summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2007-10-06 15:07:42 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2007-10-06 15:07:42 +0000
commitf43a27bcdd2e851119cd0914ac28e76d39644bdb (patch)
tree9d785104a3668814f29572fb680e3ed8a734932b /sys
parent80999121bae1bffd49dbf7e76f4f1f8adceed2c1 (diff)
Provide <machine/lock.h> on hppa64 too.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/hppa64/include/lock.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/sys/arch/hppa64/include/lock.h b/sys/arch/hppa64/include/lock.h
new file mode 100644
index 00000000000..fcf9a2e6822
--- /dev/null
+++ b/sys/arch/hppa64/include/lock.h
@@ -0,0 +1,48 @@
+/* $OpenBSD: lock.h,v 1.1 2007/10/06 15:07:41 kettenis Exp $ */
+
+/* public domain */
+
+#ifndef _HPPA64_LOCK_H_
+#define _HPPA64_LOCK_H_
+
+typedef volatile u_int __cpu_simple_lock_t __attribute__((__aligned__(16)));
+
+#define __SIMPLELOCK_LOCKED 0
+#define __SIMPLELOCK_UNLOCKED 1
+
+static __inline__ void
+__cpu_simple_lock_init(__cpu_simple_lock_t *l)
+{
+ *l = __SIMPLELOCK_UNLOCKED;
+}
+
+static __inline__ void
+__cpu_simple_lock(__cpu_simple_lock_t *l)
+{
+ __cpu_simple_lock_t old;
+
+ do {
+ old = __SIMPLELOCK_LOCKED;
+ __asm__ __volatile__
+ ("ldcw %1, %0" : "=r" (old), "=m" (l) : "m" (l));
+ } while (old != __SIMPLELOCK_UNLOCKED);
+}
+
+static __inline__ int
+__cpu_simple_lock_try(__cpu_simple_lock_t *l)
+{
+ __cpu_simple_lock_t old = __SIMPLELOCK_LOCKED;
+
+ __asm__ __volatile__
+ ("ldcw %1, %0" : "=r" (old), "=m" (l) : "m" (l));
+
+ return (old == __SIMPLELOCK_UNLOCKED);
+}
+
+static __inline__ void
+__cpu_simple_unlock(__cpu_simple_lock_t *l)
+{
+ *l = __SIMPLELOCK_UNLOCKED;
+}
+
+#endif /* _HPPA64_LOCK_H_ */