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?
|
|
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?
|
||||||||||||||
|
closed as not a real question by Rich B, George Stocker, TheTXI, paxdiablo, Alex Fort Mar 20 at 14:38 |
|
|
The answer to life, the universe, and everything int *p = 0; *p = 42; |
|||
|
|
|
abort() -- that's what it's there for. |
||||||
|
|
|
Favorite has nothing to do with it :p.
or
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. |
||
|
|
|
Attach with a debugger and examine it live. Core files are so 1980s. |
||
|
|
|
Well, on anything POSIX-compatable:
|
||
|
|
|
|
||||||
|
|
|
I prefer this way because it is an expression, not a full statement, which makes it usable in more situations. |
||
|
|
|
|
why not do it the right way?
|
||||
|