]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Define SA_NOCLDWAIT.
authorUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:43:54 +0000 (05:43 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 23 Feb 2000 05:43:54 +0000 (05:43 +0000)
sysdeps/unix/sysv/linux/alpha/bits/sigaction.h
sysdeps/unix/sysv/linux/bits/sigaction.h
sysdeps/unix/sysv/linux/mips/bits/sigaction.h
sysdeps/unix/sysv/linux/sparc/bits/sigaction.h

index e5b9c4536709d42def44da1c4e22ab884f0c4f63..7a499aa65cd09fe819937fefbb45ff2cebae39d7 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. */
 #ifdef __USE_MISC
index b357c45342feddf1b6a37920075abb168d45fc91..e74eac22dbf1bfe664d2b6385e08859910e8fb45 100644 (file)
@@ -1,5 +1,5 @@
 /* The proper definitions for Linux's sigaction.
-   Copyright (C) 1993, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
+   Copyright (C) 1993, 94, 95, 96, 97, 98, 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
@@ -52,6 +52,7 @@ struct sigaction
 
 /* Bits in `sa_flags'.  */
 #define        SA_NOCLDSTOP  1          /* Don't send SIGCHLD when children stop.  */
+#define SA_NOCLDWAIT  2                 /* Don't create zombie on child death.  */
 #define SA_SIGINFO    4                 /* Invoke signal-catching function with
                                    three arguments instead of one.  */
 #if defined __USE_UNIX98 || defined __USE_MISC
index 855fe287d449737a46e251e7db00bcee38e58e13..544511b272da0ba5158ebbfb3c8e590767bcedb5 100644 (file)
@@ -1,5 +1,5 @@
 /* The proper definitions for Linux/MIPS's sigaction.
-   Copyright (C) 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1993-1995, 1997, 1998, 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
@@ -56,6 +56,7 @@ struct sigaction
 
 /* Bits in `sa_flags'.  */
 #define SA_NOCLDSTOP  0x00020000 /* 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
index 69869e929cfe1079c3eb948432fa1eb72b6e81b8..7d7b3cc5d0f78fc1f5676213a40aa2b0e21d7ee5 100644 (file)
@@ -1,5 +1,5 @@
 /* The proper definitions for Linux/SPARC sigaction.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 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
@@ -53,6 +53,7 @@ struct sigaction
 
 /* Bits in `sa_flags'.  */
 #define        SA_NOCLDSTOP 0x00000008  /* Don't send SIGCHLD when children stop.  */
+#define SA_NOCLDWAIT 0x00000100         /* Don't create zombie on child death.  */
 #define SA_SIGINFO   0x00000200  /* Invoke signal-catching function with
                                    three arguments instead of one.  */
 #ifdef __USE_MISC