1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro.

This commit is contained in:
Roland McGrath
1996-03-20 17:01:27 +00:00
parent 948c3e72ec
commit d7193325fc
3 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/* Definitions of flag bits for `waitpid' et al.
Copyright (C) 1992 Free Software Foundation, Inc.
/* Definitions of flag bits for `waitpid' et al. Hurd version.
Copyright (C) 1992, 1996 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -24,5 +24,8 @@ Cambridge, MA 02139, USA. */
/* Bits in the third argument to `waitpid'. */
#define WNOHANG 1 /* Don't block waiting. */
#define WUNTRACED 2 /* Report status of stopped children. */
#ifdef __USE_GNU
#define WNOREAP 4 /* Don't remove record of child reported. */
#endif
#endif /* waitflags.h */