(struct sigcontext): Use __sigset_t' instead of sigset_t' for `sc_mask'.

This commit is contained in:
Roland McGrath 1994-11-22 22:29:25 +00:00
parent e8a261b3fc
commit 239291e1db
5 changed files with 8 additions and 8 deletions

View 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;

View 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;

View 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;
};

View 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;

View 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;