summaryrefslogtreecommitdiffstats
path: root/proc.c
AgeCommit message (Collapse)Author
2017-07-14Because ignore SIGCHLD early, letting signal_del restore it doesn't worknicm
correctly, so set it explicitly back to default (and the others for good measure).
2017-07-14Fix redraw defer code in the presence of multiple clients - the timernicm
may be needed for all of them, so don't delete it on the first; and don't skip setting the redraw flag if the timer is already running. Reported by Pol Van Aubel in GitHub issue 1003.
2017-07-12Do not need to set up USR2 twice.nicm
2017-07-12Move signal code into proc.c.nicm
2017-07-12proc_send_s now seems unnecessary.nicm
2017-06-07Return 1 if name matches not 0, also fix some spaces.nicm
2017-06-04Support SIGUSR2 to stop and start logging for an existing server. Alsonicm
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.
2016-01-19I no longer use my SourceForge address so replace it.nicm
2015-12-05EAGAIN handling for imsg_read. OK henning@ benno@claudio
2015-11-24Log some system and libevent information at startup.nicm
2015-11-24Make the log stuff a bit tidier with some helper functions.nicm
2015-11-18Use __unused rather than rolling our own.nicm
2015-10-31Don't shift version out of peerid, it is needed later.nicm
2015-10-29Break version check into a separate function, and limit version to 8 bits.nicm
2015-10-27Break the common process set up, event loop and imsg dispatch codenicm
between server and client out into a separate internal API. This will make it easier to add another process.