s6

Mirror/fork of https://skarnet.org/software/s6/
git clone https://ccx.te2000.cz/git/s6
Log | Files | Refs | README | LICENSE

commit 61295482f0de9379ce428194f016f48cf9668b6a
parent 3962885e117e92a9b01d3a9d45895602115e725f
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date:   Fri, 24 Dec 2021 08:31:27 +0000

 s6-log: restart event loop when closing stdin on signal

Signed-off-by: Laurent Bercot <ska@appnovation.com>

Diffstat:
Msrc/daemontools-extras/s6-log.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/daemontools-extras/s6-log.c b/src/daemontools-extras/s6-log.c @@ -1115,14 +1115,15 @@ static inline void processor_died (logdir_t *ldp, int wstat) } } -static inline void handle_signals (void) +static inline int handle_signals (void) { + int e = 0 ; for (;;) { switch (selfpipe_read()) { case -1 : strerr_diefu1sys(111, "selfpipe_read") ; - case 0 : return ; + case 0 : return e ; case SIGALRM : { unsigned int i = 0 ; @@ -1138,7 +1139,7 @@ static inline void handle_signals (void) if (flagprotect) break ; case SIGHUP : handle_stdin = &last_stdin ; - if (!indata.len) prepare_to_exit() ; + if (!indata.len) { prepare_to_exit() ; e = 1 ; } break ; case SIGCHLD : { @@ -1277,8 +1278,7 @@ int main (int argc, char const *const *argv) if (r < 0) strerr_diefu1sys(111, "iopause") ; else if (!r) continue ; - if (x[0].revents & IOPAUSE_READ) handle_signals() ; - else if (x[0].revents & IOPAUSE_EXCEPT) strerr_dief1sys(111, "trouble with selfpipe") ; + if (x[0].revents & (IOPAUSE_READ | IOPAUSE_EXCEPT) && handle_signals()) continue ; if (xindex1 && x[xindex1].revents) {