diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-05-21 20:05:31 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-05-21 20:05:31 +0000 |
commit | 1223d06696f7e28ea88bca80018594fdcd57b172 (patch) | |
tree | e341da38c545b15b66d9e7a68c2b72d4935f1a68 /sys/arch/sh | |
parent | 1fb7bca1316e90db7b342fe0821eadb80b983d9f (diff) |
remove unused cpu_lock code (where it is truly unused). it is not
part of the future we have planned. middling ok from a few
Diffstat (limited to 'sys/arch/sh')
-rw-r--r-- | sys/arch/sh/include/lock.h | 42 |
1 files changed, 1 insertions, 41 deletions
diff --git a/sys/arch/sh/include/lock.h b/sys/arch/sh/include/lock.h index e228fabc292..97254b0d75e 100644 --- a/sys/arch/sh/include/lock.h +++ b/sys/arch/sh/include/lock.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lock.h,v 1.3 2010/04/26 05:48:19 deraadt Exp $ */ +/* $OpenBSD: lock.h,v 1.4 2013/05/21 20:05:30 tedu Exp $ */ /* $NetBSD: lock.h,v 1.10 2006/01/03 01:29:46 uwe Exp $ */ /*- @@ -39,44 +39,4 @@ #include <sh/atomic.h> -typedef volatile u_int8_t __cpu_simple_lock_t; - -#define __SIMPLELOCK_LOCKED 0x80 -#define __SIMPLELOCK_UNLOCKED 0x00 - -static __inline void -__cpu_simple_lock_init(__cpu_simple_lock_t *alp) -{ - *alp = __SIMPLELOCK_UNLOCKED; -} - -static __inline void -__cpu_simple_lock(__cpu_simple_lock_t *alp) -{ - __asm volatile( - "1: tas.b %0 \n" - " bf 1b \n" - : "=m" (*alp)); -} - -static __inline int -__cpu_simple_lock_try(__cpu_simple_lock_t *alp) -{ - int __rv; - - __asm volatile( - " tas.b %0 \n" - " mov #0, %1 \n" - " rotcl %1 \n" - : "=m" (*alp), "=r" (__rv)); - - return (__rv); -} - -static __inline void -__cpu_simple_unlock(__cpu_simple_lock_t *alp) -{ - *alp = __SIMPLELOCK_UNLOCKED; -} - #endif /* !_SH_LOCK_H_ */ |