vote up 0 vote down star

how to get the pid of a process which has sent a SIGABRT signal to another process which has exited dumping core

flag

1 Answer

vote up 0 vote down

In short, by installing a signal handler for SIGABRT. More specifically, if you specify the SA_SIGINFO flag when installing the signal handler, then the siginfo_t structure should be populated with extra info about the signal, including the sender's PID etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.