/* 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;
/* 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;
/* 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
struct sigcontext
{
int sc_onstack;
- sigset_t sc_mask;
+ __sigset_t sc_mask;
int sc_sp, sc_pc, sc_ps;
};
/* 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
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;
-/* 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
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;