调试过程中,可能需要打印某一时刻的调用栈(当然你说用IDE那当我没说),那么你可以参考本文:
#include <execinfo.h>
#define MAX_STACK_DEPTH (20)
void print_stackframe(void)
{
void * buffer[MAX_STACK_DEPTH];
int depth = backtrace(buffer, MAX_STACK_DEPTH);
char ** func_names = backtrace_symbols(buffer, depth);
for (int i=0; i<depth; i++){
PRINTF("Depth: %d, func name: %s\n", i, func_names[i]);
}
}
笔者测试的是一个调用静态链接库的程序,符号表补全,只能打出偏移地址:
E
Creating demo Looper
X
Enter -- [demo]
Start Looper-- [demo]
ASSERT IN src/looper.c -- 47 --_is_q_empty
ASSERT IN src/looper.c -- 47 --_is_q_empty
Depth: 0, func name: [0x4015d3]
Depth: 1, func name: [0x40108e]
Depth: 2, func name: [0x4011cd]
Depth: 3, func name: [0x40132e]
Depth: 4, func name: [0x402aeb]
Depth: 5, func name: [0x458d2f]
Depth: 0, func name: [0x4015d3]
Depth: 1, func name: [0x40108e]
Depth: 2, func name: [0x4010e7]
假设各位遇到同样的情况,不要慌,用addr2line(当然,把符号表补全才是王道):
henry@henry-Parallels-Virtual-Platform:~/work_2/thread_lib/demo$ addr2line -a 40132e -f -e main
0x000000000040132e
_thread_func
/home/henry/work_2/thread_lib/src/looper.c:112
这样就能获得函数名和行数,从而找到出异常的点。
可能有同学会说用gdb的bt,当然可以,不过一些多线程现场或者嵌入式现场不是那么方便。