2
votes
How can a C program produce a core dump of itself without terminating?
Do you really want a core, or just a stacktrace ?
If all you want is a stacktrace you could take a look at the opensource http://so …
0
votes
tempnam equivalent in C++
#include <cstdio>
using std::tmpnam;
using std::tmpfile;
You should also check this …
