I would like to force a core dump at a specific location in my C++ application.
I know I can do it by doing something like:
int * crash = NULL;
*crash = 1;
But I would like to know if there is a cleaner way?
I am using Linux by the way.
feedback
|
|
Raising of signal number 6 (SIGABRT) is one way to do it.
Calling | |||||||||
feedback
|
|
A few years ago, Google released the coredumper library.
It's not what you were asking for, but maybe it's even better :) | |||
|
feedback
|
| |||
|
feedback
|
|
As listed in the signal manpage, any signal with the action listed as 'core' will force a core dump. Some examples are:
Make sure that you enable core dumps:
| |||
|
feedback
|
|
abort(); Related, sometimes you'd like a back trace without an actual core dump, and allow the program to continue running: check out glibc backtrace() and backtrace_symbols() functions: http://www.gnu.org/s/libc/manual/html_node/Backtraces.html | |||
|
feedback
|
|
You can use kill(2) to send signal.
So,
| |||||||||||
feedback
|
| |||
feedback
|