From: Roland McGrath Date: Tue, 17 Dec 2002 04:50:44 +0000 (+0000) Subject: 2002-12-16 Roland McGrath X-Git-Tag: v4.5.18~944 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ec1d3584b4caafd6c3634f0a41f90e85f25d42b;p=strace 2002-12-16 Roland McGrath * process.c [LINUX] (wait4_options): Fix __WCLONE value. Add __WNOTHREAD and __WALL. --- 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 }, };