diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2007-05-29 18:18:21 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2007-05-29 18:18:21 +0000 |
commit | 26375f23041790199f2fea3ab32b52cb1b66e94a (patch) | |
tree | 440ec9ae245c4112852c2e24ea7327070135708f /sys/arch/i386/include/lock.h | |
parent | 2daba14db3ad27d7c4b423645a257e6ef8a252dd (diff) |
Remove support for 80386 processors. Apologies if you have one of
the rare 80386-bases system with enough memory, a 387 FPU, a useable
disk subsystem, and the patience to wait for it to unpack the
distribution .tgz files.
approval from art@ and many others (esp. nick@); ok deraadt@
Diffstat (limited to 'sys/arch/i386/include/lock.h')
-rw-r--r-- | sys/arch/i386/include/lock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/include/lock.h b/sys/arch/i386/include/lock.h index 172ed35fdf3..97a3af49cb3 100644 --- a/sys/arch/i386/include/lock.h +++ b/sys/arch/i386/include/lock.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lock.h,v 1.4 2007/05/04 12:58:41 art Exp $ */ +/* $OpenBSD: lock.h,v 1.5 2007/05/29 18:18:20 tom Exp $ */ /* $NetBSD: lock.h,v 1.1.2.2 2000/05/03 14:40:55 sommerfeld Exp $ */ /*- @@ -118,8 +118,8 @@ __cpu_simple_unlock(__cpu_simple_lock_t *lockp) #endif /* !LOCKDEBUG */ #ifdef _KERNEL -extern int (*rw_cas_p)(volatile unsigned long *, unsigned long, unsigned long); -#define rw_cas (*rw_cas_p) +extern int rw_cas_486(volatile unsigned long *, unsigned long, unsigned long); +#define rw_cas rw_cas_486 #endif #endif /* _I386_LOCK_H_ */ |