diff options
-rw-r--r-- | sys/arch/hppa/include/signal.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/hppa/include/signal.h b/sys/arch/hppa/include/signal.h index fb6635c9dd2..0d33f8862f9 100644 --- a/sys/arch/hppa/include/signal.h +++ b/sys/arch/hppa/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.3 2003/05/18 15:57:47 mickey Exp $ */ +/* $OpenBSD: signal.h,v 1.4 2003/08/04 16:39:24 mickey Exp $ */ /* * Copyright (c) 1994, The University of Utah and @@ -41,13 +41,13 @@ typedef int sig_atomic_t; * a non-standard exit is performed. */ struct sigcontext { - int sc_onstack; /* sigstack state to restore */ - int sc_mask; /* signal mask to restore */ - int sc_ps; /* psl to restore */ - int sc_fp; /* fp to restore */ - int sc_pcoqh; /* pc offset queue (head) to restore */ - int sc_pcoqt; /* pc offset queue (tail) to restore */ - int sc_resv[2]; - int sc_regs[32]; - int sc_fpregs[64]; + unsigned sc_onstack; /* sigstack state to restore */ + unsigned sc_mask; /* signal mask to restore */ + unsigned sc_ps; /* psl to restore */ + unsigned sc_fp; /* fp to restore */ + unsigned sc_pcoqh; /* pc offset queue (head) to restore */ + unsigned sc_pcoqt; /* pc offset queue (tail) to restore */ + unsigned sc_resv[2]; + unsigned sc_regs[32]; + unsigned sc_fpregs[64]; }; |