Commit b112282e authored by Robert Schmidt's avatar Robert Schmidt

Suppress warning, print stacktrace to stdout

parent 7ee3bacc
......@@ -33,9 +33,9 @@
#define _Assert_Exit_ \
if (getenv("gdbStacks")) { \
char tmp [1000]; \
sprintf(tmp,"gdb -ex='set confirm off' -ex 'thread apply all bt' -ex q -p %d > /tmp/full_stacks.%d < /dev/null", \
sprintf(tmp,"gdb -ex='set confirm off' -ex 'thread apply all bt' -ex q -p %d < /dev/null", \
getpid(), getpid()); \
__attribute__((unused)) int dummy=system(tmp); \
(void) system(tmp); \
} \
fprintf(stderr, "\nExiting execution\n"); \
fflush(stdout); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment