Re: runit: why ignore SIGCONT for stages?

2021-11-27 Thread Steve Litt
Guillermo said on Sat, 27 Nov 2021 17:05:14 -0300 >This was meant for the mailing list. I accidentally replied to the >author instead. Sorry Leah! > >El mar, 23 nov 2021 a las 9:18, Leah Neukirchen escribió: >> >> [...] This seems to be due to runit(8) before execing >> into the stages: >> >>

Re: runit: why ignore SIGCONT for stages?

2021-11-27 Thread Guillermo
This was meant for the mailing list. I accidentally replied to the author instead. Sorry Leah! El mar, 23 nov 2021 a las 9:18, Leah Neukirchen escribió: > > [...] This seems to be due to runit(8) before execing > into the stages: > > sig_unblock(sig_cont); > sig_ignore(sig_cont); > ...

Re: runit: why ignore SIGCONT for stages?

2021-11-23 Thread Steve Litt
Leah Neukirchen said on Tue, 23 Nov 2021 13:17:58 +0100 >Hello, > >During debugging a ksh issue (https://github.com/ksh93/ksh/issues/301), >we noticed that many processes on a Void Linux system booted with runit >are ignoring SIGCONT. This seems to be due to runit(8) before execing >into the stag

runit: why ignore SIGCONT for stages?

2021-11-23 Thread Leah Neukirchen
Hello, During debugging a ksh issue (https://github.com/ksh93/ksh/issues/301), we noticed that many processes on a Void Linux system booted with runit are ignoring SIGCONT. This seems to be due to runit(8) before execing into the stages: sig_unblock(sig_cont); sig_ignore(sig_cont); .