aboutsummaryrefslogtreecommitdiff
path: root/signal.c
Commit message (Collapse)AuthorAge
* Do not call event_del() for signals after fork(), just use sigaction()Nicholas Marriott2010-08-19
| | | | | directly instead - calling libevent functions after fork() w/o event_reinit() is a bad idea, even if in this case it was harmless.
* Use $OpenBSD$.Nicholas Marriott2010-05-14
|
* Catch SIGHUP and terminate if running as a client. This prevents clientsJoel Sing2010-05-12
| | | | | | | from being left hanging around when, for example, a SSH session is disconnected. ok nicm@
* Put this back in with the initialisation in the right order.Nicholas Marriott2010-05-04
|
* Revert last change, it appears to be broken somehow.Nicholas Marriott2010-05-04
|
* Make signal handler setup/teardown two common functions instead of six,Nicholas Marriott2010-05-03
and reset SIGCHLD after fork to fix problems with some shells. From Romain Francois.