Re: WEXITED/WCONTINUED

2020-12-27 Thread Samuel Thibault
Svante Signell, le dim. 27 déc. 2020 12:38:03 +0100, a ecrit: > Why did you choose in proc/wait.c: > +#ifndef WCONTINUED > +#define WCONTINUED 4 > +#endif > + > +#ifndef WEXITED > +#define WEXITED 16 > +#endif > > Any specific reason? The Hurd values usually follow the BSD values. Those are the F

Re: WEXITED/WCONTINUED

2020-12-27 Thread Svante Signell
On Sun, 2020-12-27 at 01:13 +0100, Samuel Thibault wrote: > Hello, > > For information, I am currently landing patches to implemented > waitid's > WEXITED/WCONTINUED/etc. Linux has in /usr/include/x86_64-linux-gnu/bits/waitflags.h: # define WEXITED4 /* Report dead child. */ # defin

Re: WEXITED/WCONTINUED

2020-12-27 Thread Svante Signell
On Sun, 2020-12-27 at 02:24 +, jbra...@dismail.de wrote: > That's pretty cool! I wonder what applications will benefit from > that. I would imagine quite a few. > > December 26, 2020 7:13 PM, "Samuel Thibault" > wrote: > > > Hello, > > > > For information, I am currently landing patches to