diff options
Diffstat (limited to 'sys/i386/include/signal.h')
-rw-r--r-- | sys/i386/include/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/include/signal.h b/sys/i386/include/signal.h index 1e91f60..74accc8 100644 --- a/sys/i386/include/signal.h +++ b/sys/i386/include/signal.h @@ -62,7 +62,7 @@ typedef int sig_atomic_t; */ typedef unsigned int osigset_t; -struct osigcontext { +struct osigcontext { int sc_onstack; /* sigstack state to restore */ osigset_t sc_mask; /* signal mask to restore */ int sc_esp; /* machine state follows: */ @@ -90,7 +90,7 @@ struct osigcontext { * The sequence of the fields/registers in struct sigcontext should match * those in mcontext_t. */ -struct sigcontext { +struct sigcontext { sigset_t sc_mask; /* signal mask to restore */ int sc_onstack; /* sigstack state to restore */ int sc_gs; /* machine state (struct trapframe): */ |