https://bugzilla.novell.com/show_bug.cgi?id=387202 User matz@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=387202#c103 --- Comment #103 from Michael Matz <matz@novell.com> 2009-02-06 07:15:11 MST --- re #101: core files for multi-thread processes (which nscd is) aren't named "core", but rather "core.$PID", hence your egrep pattern won't find them.
Read: try to simulate an assertion or segfault with nscd, and get it to produce one.
Easy: % ulimit -c unlimited % nscd -d & [1] 28280 % kill -SEGV $! [1]+ Segmentation fault (core dumped) nscd -d % pwd; ls -l core.28280 / -rw------- 1 root root 42344448 2009-02-06 15:10 core.28280 without debug: % nscd % pidof nscd 28304 % kill -SEGV $(pidof nscd) % ls -l core.28304 -rw------- 1 root root 42344448 2009-02-06 15:12 core.28304 % file core.28280 core.28304 core.28280: ELF 32-bit LSB core file Intel 80386, version 1 (SYSV), SVR4-style, from 'nscd -d' core.28304: ELF 32-bit LSB core file Intel 80386, version 1 (SYSV), SVR4-style, from 'nscd' -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.