sigchld

Will a child process send SIGCHLD on abort()?

If an application does a fork() and the child dies with an abort() (due to failing an assert()), will the parent process receive a SIGCHLD? If it's relevant this is on Debian 4 (gcc version 4.1.2). ...