发布时间:2013-06-03 16:56:03
原文地址:http://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html3.6 可变参数宏宏可以像函数一样接受可变参数,定义方式跟函数相似,例如: #define eprintf(...) fprintf (stderr, __VA_ARGS__)当可变参数宏被调用后,参数列表中的所有符号(包括逗号)都成为变量参数并替换__VA_ARGS__在宏中出现的位.........【阅读全文】
发布时间:2013-05-28 14:27:26
环境: 虚拟机 操作系统ubuntu10.04 交叉工具arm-none-linux-gnueabi-下载gdb-7.6,下载地址:http://www.gnu.org/software/gdb/download/,解压到合适的文件夹下,tar -xvzf gdb-7.6.tar.gz首先把交叉编译工具的路径加入到pro.........【阅读全文】
发布时间:2012-11-02 14:42:11
What does"IP_ADD_MEMBERSHIP: No such device "mean? It means that the tool is trying to use multicast but the network interface doesn't support it There are two likely causes: ·Your machine doesn't have multicast support enabled. For example, on Linux and FreeBSD it is possible t.........【阅读全文】