From 7ec1d3584b4caafd6c3634f0a41f90e85f25d42b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 17 Dec 2002 04:50:44 +0000 Subject: [PATCH] 2002-12-16 Roland McGrath * process.c [LINUX] (wait4_options): Fix __WCLONE value. Add __WNOTHREAD and __WALL. --- process.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/process.c b/process.c index 6a68316d..e30fd1cf 100644 --- a/process.c +++ b/process.c @@ -1447,8 +1447,14 @@ struct tcb *tcp; } #ifdef LINUX +#ifndef __WNOTHREAD +#define __WNOTHREAD 0x20000000 +#endif +#ifndef __WALL +#define __WALL 0x40000000 +#endif #ifndef __WCLONE -#define __WCLONE 0x8000000 +#define __WCLONE 0x80000000 #endif #endif /* LINUX */ @@ -1474,6 +1480,12 @@ static struct xlat wait4_options[] = { #endif #ifdef __WCLONE { __WCLONE, "__WCLONE" }, +#endif +#ifdef __WALL + { __WALL, "__WALL" }, +#endif +#ifdef __WNOTHREAD + { __WNOTHREAD, "__WNOTHREAD" }, #endif { 0, NULL }, }; -- 2.50.1