On 2000-Mar-02 07:10:39 +1100, Lyndon Nerenberg <[EMAIL PROTECTED]> wrote:
>I'm too lazy to look right this second ;-) ... do atexit() functions get
>run when a process takes (say) a segmentation fault?

Nope.  If there's no userland signal handler, the process will never
return to userland after a signal.  If you really wanted to, you
could add handlers for all the signals and make them call the
atexit() functions before dying, but that would get messy (since
the process state is probably indeterminate if it got an unexpected
signal).

As various people have pointed out, SysV IPC is mostly an abomination.

Peter


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to