Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Move signal code into proc.c. | nicm | 2017-07-12 |
| | |||
* | Support SIGUSR2 to stop and start logging for an existing server. Also | nicm | 2017-06-04 |
| | | | | | we currently only have two log levels so just use -v and -vv rather than -v and -vvvv, and clarify the man page entry for -v. | ||
* | Loads more static, except for cmd-*.c and window-*.c. | nicm | 2016-10-10 |
| | |||
* | I no longer use my SourceForge address so replace it. | nicm | 2016-01-19 |
| | |||
* | Break the common process set up, event loop and imsg dispatch code | nicm | 2015-10-27 |
| | | | | | between server and client out into a separate internal API. This will make it easier to add another process. | ||
* | Tidy up some includes. | nicm | 2014-10-20 |
| | |||
* | Do not call event_del() for signals after fork(), just use sigaction() | Nicholas Marriott | 2010-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 Marriott | 2010-05-14 |
| | |||
* | Catch SIGHUP and terminate if running as a client. This prevents clients | Joel Sing | 2010-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 Marriott | 2010-05-04 |
| | |||
* | Revert last change, it appears to be broken somehow. | Nicholas Marriott | 2010-05-04 |
| | |||
* | Make signal handler setup/teardown two common functions instead of six, | Nicholas Marriott | 2010-05-03 |
and reset SIGCHLD after fork to fix problems with some shells. From Romain Francois. |