diff options
author | 1999-01-17 23:49:48 +0000 | |
---|---|---|
committer | 1999-01-17 23:49:48 +0000 | |
commit | a216fd63eac8b016dc2a979383ab7441f274c65c (patch) | |
tree | d5d9dcd929ea6460a98a6a3f6380b31c3771caa6 /lib/libpthread/arch/sparc | |
parent | pthread_atfork() (diff) | |
download | wireguard-openbsd-a216fd63eac8b016dc2a979383ab7441f274c65c.tar.xz wireguard-openbsd-a216fd63eac8b016dc2a979383ab7441f274c65c.zip |
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; |