利用宏定义在源程序中转化已定义函数增加调试信息的方法

有段时间没写博客了,写个调试方法留作纪念。下面这个方法,特别是内核驱动代码,在去查某个源文件中,所有调用读写寄存器,readl、writel等,挺有用。方法类似,在printk加入一个 count++的静态寄存器,可在log显示读写的过程顺序。方法简单提取如下:

//a.c

int func(int n)
{
        return 34;
}

//a.h

#ifndef _A_H_
#define _A_H_

int func(int n);

#endif

//test.c

#include 
#include "a.h"

#define func(k) \
({ \
        printf("- %d -\n", (unsigned int)(k)); \
        func(k); \
})

int main(int argc, char *argv[])
{
        int n = func(6);
        printf("-- %d --\n", n);
}

编译过程,输出结果如下:

zhongkj@server:~/t1/t2$ gcc test.c a.c -o test -Wall
zhongkj@server:~/t1/t2$
zhongkj@server:~/t1/t2$ ./test
- 6 -
-- 34 --
zhongkj@server:~/t1/t2$
 

你可能感兴趣的:(C语言调试,内核调试方法)