Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1370441
  • 博文数量: 244
  • 博客积分: 10311
  • 博客等级: 上将
  • 技术积分: 3341
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-14 21:50
文章分类

全部博文(244)

文章存档

2013年(6)

2012年(5)

2011年(16)

2010年(11)

2009年(172)

2008年(34)

分类: LINUX

2010-01-04 12:28:33

__FILE__ __FUNCTION__ __LINE__实现调试跟踪
//file:line_function_file.c
1 #include
2
3 void test(void)
4 {
5         printf("%s:%s:%d:debug info:hello !\n",__FILE__,__FUNCTION__,__LINE__);
6 }
7
8 int main(void)
9 {
10         test();
11         return 0;
12 }

[root@study]# vi line_function_file.c
[root@study]#
[root@study]#
gcc -o line_function_file line_function_file.c
[root@study]#
[root@study]#
./line_function_file
line_function_file.c:test:5:debug info:hello !
阅读(1302) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~