# define DEF(func, kind, rettype, args...) rettype tern_ ## func (unsigned insid, ##args);
上面的rettype是宏参数,在实际使用DEF宏时,在rettype位置要有一个参数,然后在宏内容里rettype位置就会被替换为你提供的参数;##用于连接前后两个参数,把它们变成一个字符串。
DEF(pthread_create, Synchronization, int, pthread_t *thread, const pthread_attr_t *attr, void* (*start_routine)(void *), void *arg)
int tern_pthread_create(unsigned insid, pthread_t *thread, const pthread_attr_t *attr, void* (*start_routine)(void *), void *arg);
#define中的rettype和##,布布扣,bubuko.com
原文地址:http://blog.csdn.net/bluecloudmatrix/article/details/35313149