about summary refs log tree commit diff
path: root/sysdeps/unix/bsd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-03-20 17:01:27 +0000
committerRoland McGrath <roland@gnu.org>1996-03-20 17:01:27 +0000
commitd7193325fcd37097d80961e0731de03765f6b5ec (patch)
treea4395c8940a3cb8a68207f645da69c07d87a3add /sysdeps/unix/bsd
parent948c3e72ecaa4e8dfce47dcbc62b9723c9946155 (diff)
downloadglibc-d7193325fcd37097d80961e0731de03765f6b5ec.tar.gz
glibc-d7193325fcd37097d80961e0731de03765f6b5ec.tar.xz
glibc-d7193325fcd37097d80961e0731de03765f6b5ec.zip
* sysdeps/unix/bsd/waitflags.h (WNOREAP): New macro.
Diffstat (limited to 'sysdeps/unix/bsd')
-rw-r--r--sysdeps/unix/bsd/waitflags.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/unix/bsd/waitflags.h b/sysdeps/unix/bsd/waitflags.h
index 52e4f80619..b5b4932700 100644
--- a/sysdeps/unix/bsd/waitflags.h
+++ b/sysdeps/unix/bsd/waitflags.h
@@ -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 */