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.

link|improve this question

5  
A "cleaner" way to core dump? .... good one ;) – OJ. Jun 11 '09 at 3:19
1  
This is cute. Better yet use a boolean (enum in c?)... if(crash = TRUE) { / OH SHI... */ } – Ape-inago Jun 11 '09 at 3:28
2  
BTW, that method doesn't work in all UNIXes. HPUX, for one, allows you to read and write NULL with impunity (thankfully, this is configurable). – paxdiablo Jun 11 '09 at 4:13
I just learned like 3 or 4 great new things. Thanks. – Trevor Boyd Smith Jun 11 '09 at 11:16
@pax thats more of a reason to find a generic way ;) Thanks – hhafez Jun 11 '09 at 22:00
feedback

7 Answers

up vote 17 down vote accepted

Raising of signal number 6 (SIGABRT) is one way to do it.

#include <signal.h>
: : :
raise(6);

Calling abort() will also do it.

link|improve this answer
3  
SIGABRT is not required to be signal number 6 (though it often is - and is, specifically, on Linux). – Jonathan Leffler Jun 11 '09 at 4:51
4  
No, you're right, it's not but I tend not to worry too much about the correctness of debug code. If that escapes into the wild, the cleanliness of my code is the least of my worries :-) – paxdiablo Jun 11 '09 at 4:59
feedback

A few years ago, Google released the coredumper library.

Overview

The coredumper library can be compiled into applications to create core dumps of the running program -- without terminating. It supports both single- and multi-threaded core dumps, even if the kernel does not natively support multi-threaded core files.

Coredumper is distributed under the terms of the BSD License.

Example

This is by no means a complete example; it simply gives you a feel for what the coredumper API looks like.

#include <google/coredumper.h>
...
WriteCoreDump('core.myprogram');
/* Keep going, we generated a core file,
 * but we didn't crash.
 */

It's not what you were asking for, but maybe it's even better :)

link|improve this answer
feedback
#include <stdlib.h>   // C
//#include <cstdlib>  // C++

void core_dump(void)
{
    abort();
}
link|improve this answer
feedback

As listed in the signal manpage, any signal with the action listed as 'core' will force a core dump. Some examples are:

SIGQUIT       3       Core    Quit from keyboard
SIGILL        4       Core    Illegal Instruction
SIGABRT       6       Core    Abort signal from abort(3)
SIGFPE        8       Core    Floating point exception
SIGSEGV      11       Core    Invalid memory reference

Make sure that you enable core dumps:

ulimit -c unlimited
link|improve this answer
good point ~~~~~ – lzprgmr Sep 22 '11 at 3:12
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

link|improve this answer
feedback

You can use kill(2) to send signal.

#include <sys/types.h>
#include <signal.h>
int kill(pid_t pid, int sig);

So,

kill(getpid(), SIGSEGV);
link|improve this answer
So kill(getpid(), SIGxxx);? – Jonathan Leffler Jun 11 '09 at 3:22
Yup. Added that to the answer. – Eugene Yokota Jun 11 '09 at 3:25
2  
SIGKILL doesn't dump core... – Jonathan Leffler Jun 11 '09 at 3:31
@Jonathan Leffler, you are right. Changed to SIGSEGV. – Eugene Yokota Jun 11 '09 at 13:12
feedback
#include <assert.h>
.
.
.
     assert(!"this should not happen");
link|improve this answer
Probably need to muck with NDEBUG so this particular assert is active even when other asserts are not. – Rhys Ulerich Dec 17 '11 at 2:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.