I'm trying to remember how to get cores to dump.
I have C code which gets compiled and run like a MUD, but it's threaded (which makes gdb difficult).
I'm not getting any cores being dumped.
ulimit:
Makefile uses -D_REENTRANT -g -o execname -pthread -lm on obj files and -D_REENTRANT -c -g on source files
Or maybe my program isn't seg faulting.
I have C code which gets compiled and run like a MUD, but it's threaded (which makes gdb difficult).
I'm not getting any cores being dumped.
ulimit:
core file size (blocks, -c) 16384
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
max locked memory (kbytes, -l) unlimited
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 7168
virtual memory (kbytes, -v) unlimitedMakefile uses -D_REENTRANT -g -o execname -pthread -lm on obj files and -D_REENTRANT -c -g on source files
Or maybe my program isn't seg faulting.