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

Re: WEXITED/WCONTINUED

2020-12-27 Thread Svante Signell
gt; For information, I am currently landing patches to implemented > > waitid's > > WEXITED/WCONTINUED/etc. The workaround for WCONTINUED can now be removed in gccgo. (I did look into how WCONTINUED should be implemented, bud did not succeed. The solution by Samuel was a little to

Re: WEXITED/WCONTINUED

2020-12-26 Thread jbranso
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 implemented waitid's > WEXITED/WCONTINUED/etc. > > Samuel

WEXITED/WCONTINUED

2020-12-26 Thread Samuel Thibault
Hello, For information, I am currently landing patches to implemented waitid's WEXITED/WCONTINUED/etc. Samuel