Define SA_NOCLDWAIT.
authorUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:59:11 +0000 (05:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:59:11 +0000 (05:59 +0000)
sysdeps/unix/sysv/linux/alpha/bits/sigaction.h
sysdeps/unix/sysv/linux/mips/bits/sigaction.h

index be04235..605c4f3 100644 (file)
@@ -1,5 +1,5 @@
 /* The proper definitions for Linux/Alpha sigaction.
-   Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1999, 2000 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
@@ -49,6 +49,7 @@ struct sigaction
 
 /* Bits in `sa_flags'.  */
 #define        SA_NOCLDSTOP  0x00000004 /* Don't send SIGCHLD when children stop.  */
+#define SA_NOCLDWAIT  0x00000020 /* Don't create zombie on child death.  */
 #define SA_SIGINFO    0x00000040 /* Invoke signal-catching function with
                                    three arguments instead of one.  */
 #if defined __USE_UNIX98 || defined __USE_MISC
index 04179d2..0225078 100644 (file)
@@ -58,6 +58,7 @@ struct sigaction
 /* Please note that some Linux kernels versions use different values for these
    flags which is a bug in those kernel versions.  */
 #define SA_NOCLDSTOP  0x00000001 /* Don't send SIGCHLD when children stop.  */
+#define SA_NOCLDWAIT  0x00010000 /* Don't create zombie on child death.  */
 #define SA_SIGINFO    0x00000008 /* Invoke signal-catching function with
                                    three arguments instead of one.  */
 #if defined __USE_UNIX98 || defined __USE_MISC