summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2001-09-30 18:52:17 +0000
committerJake Burkholder <jake@FreeBSD.org>2001-09-30 18:52:17 +0000
commitb71c31cefa8151802be0bcf5b6519606940e7a0e (patch)
treea2d8a453ce096229c5ed4253ff4fabe267040d72
parent6df08a9593228531fe1d04002ea488b61f0007bf (diff)
Notes
-rw-r--r--sys/sparc64/include/signal.h2
-rw-r--r--sys/sparc64/include/ucontext.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/sparc64/include/signal.h b/sys/sparc64/include/signal.h
index 63d7d750ade1..b13db13bb2b7 100644
--- a/sys/sparc64/include/signal.h
+++ b/sys/sparc64/include/signal.h
@@ -44,7 +44,7 @@ typedef long sig_atomic_t;
#define MINSIGSTKSZ (1024 * 4)
-typedef u_int osigset_t;
+typedef int osigset_t;
struct osigcontext {
};
diff --git a/sys/sparc64/include/ucontext.h b/sys/sparc64/include/ucontext.h
index efdca33e4866..e4382bc460c4 100644
--- a/sys/sparc64/include/ucontext.h
+++ b/sys/sparc64/include/ucontext.h
@@ -33,8 +33,8 @@
#define _MACHINE_UCONTEXT_H_
typedef struct __mcontext {
- u_long mc_global[8];
- u_long mc_out[8];
+ long mc_global[8];
+ long mc_out[8];
long mc_onstack;
long mc_sp;
long mc_tpc;