]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(struct sigcontext): Use `__sigset_t' instead of `sigset_t' for `sc_mask'.
authorRoland McGrath <roland@gnu.org>
Tue, 22 Nov 1994 22:29:25 +0000 (22:29 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 22 Nov 1994 22:29:25 +0000 (22:29 +0000)
sysdeps/mach/hurd/alpha/sigcontext.h
sysdeps/mach/hurd/mips/sigcontext.h
sysdeps/unix/bsd/sun/m68k/sigcontext.h
sysdeps/unix/bsd/sun/sparc/sigcontext.h
sysdeps/unix/bsd/ultrix4/mips/sigcontext.h

index 2f8dee82744b830949fc619e3307f5990a882fb3..85feda2a642625f9cbe31854dd2c742f2d80e224 100644 (file)
@@ -26,7 +26,7 @@ struct sigcontext
     /* These first members are machine-independent.  */
 
     long int sc_onstack;       /* Nonzero if running on sigstack.  */
-    sigset_t sc_mask;          /* Blocked signals to restore.  */
+    __sigset_t sc_mask;                /* Blocked signals to restore.  */
 
     /* MiG reply port this thread is using.  */
     unsigned long int sc_reply_port;
index 37922361f64b45df0daf2beb742c799487e54817..81d1f25f25d1072a42284684a9dd7059b1dd00d2 100644 (file)
@@ -25,7 +25,7 @@ struct sigcontext
     /* These first members are machine-independent.  */
 
     int sc_onstack;            /* Nonzero if running on sigstack.  */
-    sigset_t sc_mask;          /* Blocked signals to restore.  */
+    __sigset_t sc_mask;                /* Blocked signals to restore.  */
 
     /* MiG reply port this thread is using.  */
     unsigned int sc_reply_port;
index 926c44f69c5c67b4b13e0d5138e5a77f2977fe73..471b516bdc7a88ea7158b73f9c51a6fa739eda4d 100644 (file)
@@ -1,5 +1,5 @@
 /* Structure describing state saved while handling a signal.  Sun 3 version.
-Copyright (C) 1993 Free Software Foundation, Inc.
+Copyright (C) 1993, 1994 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
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA.  */
 struct sigcontext
   {
     int sc_onstack;
-    sigset_t sc_mask;
+    __sigset_t sc_mask;
 
     int sc_sp, sc_pc, sc_ps;
   };
index 4834f2ff9e993bdd4af234d5ccb23f41dc1463c8..290bf817af37e8fc2b2d38d8c14cccc0461d8cbc 100644 (file)
@@ -1,5 +1,5 @@
 /* Structure describing state saved while handling a signal.  Sparc version.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 1994 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
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA.  */
 struct sigcontext
   {
     int sc_onstack;
-    sigset_t sc_mask;
+    __sigset_t sc_mask;
 
 #define        SPARC_MAXREGWINDOW 31   /* Maximum usable register windows.  */
     int sc_sp, sc_pc, sc_npc, sc_psr, sc_g1, sc_o0;
index 107d2fc5f6612fc8d3bfbd163175fd47e12f2720..4bddcf2f4b225aa13188ecfafb924694e81c9b80 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1994 Free Software Foundation, Inc.
    Contributed by Brendan Kehoe (brendan@zen.org).
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -24,7 +24,7 @@ struct sigcontext
     int sc_onstack;
     
     /* Signal mask to restore.  */
-    sigset_t sc_mask;
+    __sigset_t sc_mask;
     
     /* Program counter when the signal hit.  */
     __ptr_t sc_pc;