summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-08-04 16:39:25 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-08-04 16:39:25 +0000
commit244e953f23c8871f6846a905b4f07b2411b49a30 (patch)
treeac296238569a6a76a4e0c3c67e7e2ef8f43c3d49 /sys/arch
parentb8f603108a8c1e84d026230aff4d4d76d515fad4 (diff)
make 'em all unsigned
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/hppa/include/signal.h20
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];
};