linux 内核backtrace,Linux中backtrace()系列函数的应用实例
一、引言backtrace()系列函数可用来输出代码出错时的函数调用关系。A backtrace is the series of currently active function calls for the program.#include int backtrace(void **buffer, int size);char **backtrace_symbols(void *const *...