Working on some linux (Ubuntu) systems, running some in-house C and C++ apps (gcc).
There is a long list of signals which are handled, such as SIGSEGV
and SIGINT
. On signal, the callstack is obtained using backtrace(3)
and backgrace_symbols(3)
. For C++ the function names are even demangled with abi::__cxa_demangle()
.
My question is: when these signals come up, what other C/C++ API is there which would give us more useful information to log for debugging after-the-fact? Or is the backtrace the only 'sexy' thing to do?