From: Roland McGrath Date: Tue, 27 Jul 2004 01:20:15 +0000 (+0000) Subject: 2004-07-26 Roland McGrath X-Git-Tag: cvs/fedora-base~281 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d01ad8fb22c2b80c20bbc9d043666af0438b0815;p=thirdparty%2Fglibc.git 2004-07-26 Roland McGrath * sysdeps/posix/waitid.c [WEXITED]: Clear WEXITED bit in OPTIONS for call to __waitpid. --- diff --git a/sysdeps/posix/waitid.c b/sysdeps/posix/waitid.c index 76a3b1d6600..7d65e42fdc5 100644 --- a/sysdeps/posix/waitid.c +++ b/sysdeps/posix/waitid.c @@ -92,7 +92,12 @@ OUR_WAITID (idtype_t idtype, id_t id, siginfo_t *infop, int options) /* Note the waitid() is a cancellation point. But since we call waitpid() which itself is a cancellation point we do not have to do anything here. */ - child = __waitpid (pid, &status, options); + child = __waitpid (pid, &status, + options +#ifdef WEXITED + &~ WEXITED +#endif + ); if (child == -1) /* `waitpid' set `errno' for us. */