diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-01-17 23:49:50 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-01-17 23:49:50 +0000 |
commit | 4a7fc69d62f684a7548d428f1a09bcefbabe0b6f (patch) | |
tree | 065c4b70643fe8a9eacbe5f48901a9cc0f0363d3 /lib/libpthread/arch/sparc | |
parent | 9ebd7c855719a914d8220cf8b7ab845bd006e6fc (diff) |
mi+md jmp_buf; save i386s fs and gs for WINE (csapuntz@stanford.edu)
Diffstat (limited to 'lib/libpthread/arch/sparc')
-rw-r--r-- | lib/libpthread/arch/sparc/uthread_machdep.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libpthread/arch/sparc/uthread_machdep.h b/lib/libpthread/arch/sparc/uthread_machdep.h index 56103122674..c922b49fd0c 100644 --- a/lib/libpthread/arch/sparc/uthread_machdep.h +++ b/lib/libpthread/arch/sparc/uthread_machdep.h @@ -1,7 +1,7 @@ /* * OpenBSD/sparc machine-dependent thread macros * - * $OpenBSD: uthread_machdep.h,v 1.1 1998/11/20 11:15:37 d Exp $ + * $OpenBSD: uthread_machdep.h,v 1.2 1999/01/17 23:49:49 d Exp $ */ #include <sys/signal.h> @@ -38,6 +38,8 @@ #define _thread_machdep_longjmp(a,v) _longjmp(a,v) #define _thread_machdep_setjmp(a) _setjmp(a) +typedef jmp_buf _machdep_jmp_buf; + struct _machdep_struct { /* char saved_fp[???]; */ int dummy; |