vote up 2 vote down star

Let's say your program is in a bad state and you just want to segfault to put the thing out of its misery and hopefully collect a core file.

What's your favorite way to do this?

flag

Intentional segfaults are a really pathetic way to handle bad states. – Pesto Mar 20 at 14:11
tagged 'fun' and 'segfault'??? – orsogufo Mar 20 at 14:12
I wanted to post an answer but it's closed already. :( Was going to say "using libijg." Can't find a way to use IJG without segfaulting at some point. – greyfade Mar 20 at 17:17
1  
Not a real question?!? I realize that twenty-somethings are unlikely to know what a corefile is, much less how and why you'd want to create one for debugging, but this is freaking ridiculous. – kdgregory Mar 20 at 18:58
1  
I don't understand how this isn't a question either. I've had real world cases where I've needed to do this. – Jon Swinghammer Mar 20 at 19:22
show 2 more comments

closed as not a real question by Rich B, George Stocker, TheTXI, paxdiablo, Alex Fort Mar 20 at 14:38

8 Answers

vote up 5 vote down check

The answer to life, the universe, and everything

int *p = 0; *p = 42;

link|flag
Except for the problem that this approach is highly dependent on processor, compiler, and OS ... there are cases (one that I can think of is no longer in current use) where location 0 is a valid memory address. If you want a SEGFAULT and not just a corefile use one of the send-signal-to-self answers – kdgregory Mar 31 at 14:26
vote up 9 vote down

abort() -- that's what it's there for.

link|flag
abort generates SIGABRT rather than SIGSEGV, as requested by OP – qrdl Mar 20 at 14:35
1  
Good point. Although personally, I've never wanted to cause a SIGSEGV, and can't imagine a reason that I ever would. Generating a core dump as a fatal error is something I've done, and I suspect that the OP used "segfault" as a general term for this. But hey, literal interpretation is useful too. – kdgregory Mar 20 at 17:49
vote up 6 vote down

Favorite has nothing to do with it :p.

#include <stdlib.h>
.
.
abort()

or

#include <assert.h>
.
.
assert(!"This should never happen");

Attaching a debugger is not always an option for several reasons. Your program may be running on a system different from your development system on which a debugger and other tools might not be available.

link|flag
+1 - this is a better answer than mine, because it mentions assert() – kdgregory Mar 20 at 14:31
vote up 4 vote down

Attach with a debugger and examine it live. Core files are so 1980s.

link|flag
so how would you notify the developer that he/she has to attach a debugger? a spinloop? – kdgregory Mar 20 at 14:20
vote up 4 vote down

Well, on anything POSIX-compatable:

raise(SIGSEGV);
link|flag
I tried this. Same problem. Unsurprising as raise(SIGSEGV) is supposed to be equivalent to kill(getpid(), SIGSEGV) on a single-threaded program. – Norman Ramsey Nov 15 at 5:23
vote up 2 vote down

*(unsigned int *) 0 = 0xdeadbeef; is what I reach for. I know there are shorter ways of doing it, especially on the constant front, but "dead beef" is more fun than zero.

link|flag
Some systems (HPUX9, I think, for example) allow you to read and write the NULL address. – paxdiablo Mar 20 at 14:24
technically a cast is not an l-value, so not all compilers will accept that code... – Evan Teran Mar 20 at 17:33
Cast is not l-value, but dereferenced pointer always is. – Suma Mar 20 at 20:38
vote up 1 vote down
*(volatile int *)NULL

I prefer this way because it is an expression, not a full statement, which makes it usable in more situations.

link|flag
vote up 0 vote down

why not do it the right way?

#include <sys/types.h>
#include <signal.h>

void killwithsegfault ()
{
   kill(getpid(), SIGSEGV);
}
link|flag
raise(x) is standard and is shorthand for kill(getpid(), x) – Tyler McHenry Mar 20 at 14:30
I'm too old for that method :) -- unix for 25 years, posix is kinda new to me – kevindtimm Mar 20 at 14:33

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