令牌混淆

时间:2016-04-21 09:19:20

标签: c macros

所有

我的代码是这样的:

#define TTP_ROUTE_TABLE_ENTRY_INC(table)    \
static inline void  \
ttp_route_##table_inc(void)   \
{   \
    cur_l3_##table_table_entries++;   \
}
TTP_ROUTE_TABLE_ENTRY_INC(ipv4_host)
TTP_ROUTE_TABLE_ENTRY_INC(ipv4_route)
TTP_ROUTE_TABLE_ENTRY_INC(ipv6_host)
TTP_ROUTE_TABLE_ENTRY_INC(ipv6_route)
#undef TTP_ROUTE_TABLE_ENTRY_INC

但是gcc警告:

lib/ttp-route-table.c:130:1: error: redefinition of 'ttp_route_table_inc'

所以我认为GCC预处理##表到表中,实际上我想要

TTP_ROUTE_TABLE_ENTRY_INC(ipv4_host)

将转化为:

static inline void  \
ttp_route_ipv4_host_inc(void)   \
{   \
    cur_l3_ipv4_host_table_entries++;   \
}

所以我不知道我的代码有什么问题。谢谢你的帮助。

1 个答案:

答案 0 :(得分:7)

在论证#后需要另一组table

ttp_route_##table##_inc(void)

包含table的其他行也是如此。