summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/arch
diff options
context:
space:
mode:
authord <d@openbsd.org>1999-02-03 05:25:01 +0000
committerd <d@openbsd.org>1999-02-03 05:25:01 +0000
commit7f27d179feb48e33fd7033679d0bb4cf17c3a75c (patch)
treec0b211d0a4813ff3cd624505517edba8101ec166 /lib/libpthread/arch
parentThe necessary defs are in paths.h now. (diff)
downloadwireguard-openbsd-7f27d179feb48e33fd7033679d0bb4cf17c3a75c.tar.xz
wireguard-openbsd-7f27d179feb48e33fd7033679d0bb4cf17c3a75c.zip
comment out broken float save stuff for the time being
Diffstat (limited to 'lib/libpthread/arch')
-rw-r--r--lib/libpthread/arch/alpha/uthread_machdep.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libpthread/arch/alpha/uthread_machdep.h b/lib/libpthread/arch/alpha/uthread_machdep.h
index b9cf839f6bd..c64006640b8 100644
--- a/lib/libpthread/arch/alpha/uthread_machdep.h
+++ b/lib/libpthread/arch/alpha/uthread_machdep.h
@@ -1,21 +1,21 @@
/*
* OpenBSD/alpha machine-dependent thread macros
*
- * $OpenBSD: uthread_machdep.h,v 1.2 1999/01/17 23:49:48 d Exp $
+ * $OpenBSD: uthread_machdep.h,v 1.3 1999/02/03 05:25:01 d Exp $
*/
/* save the floating point state of a thread */
#define _thread_machdep_save_float_state(thr) \
{ \
- char *fdata = (char*)((thr)->_machdep.saved_fp); \
- __asm__("fsave %0"::"m" (*fdata)); \
+/* char *fdata = (char*)((thr)->_machdep.saved_fp); \
+ __asm__("fsave %0"::"m" (*fdata)); */ \
}
/* restore the floating point state of a thread */
#define _thread_machdep_restore_float_state(thr) \
{ \
- char *fdata = (char*)((thr)->_machdep.saved_fp); \
- __asm__("frstor %0"::"m" (*fdata)); \
+/* char *fdata = (char*)((thr)->_machdep.saved_fp); \
+ __asm__("frstor %0"::"m" (*fdata)); */ \
}
/* initialise the jmpbuf stack frame so it continues from entry */