blob: 364b430f0ff680eddb387394689f7b6a25eac1bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* $OpenBSD: lock.h,v 1.2 2010/04/21 03:03:26 deraadt Exp $ */
/* public domain */
#ifndef _VAX_LOCK_H_
#define _VAX_LOCK_H_
#include <machine/atomic.h>
typedef volatile u_int __cpu_simple_lock_t;
#define __SIMPLELOCK_LOCKED 1
#define __SIMPLELOCK_UNLOCKED 0
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__
("\tmovl\t$1, %1\n" /* _SPLINLOCK_LOCKED */
"\tbbssi\t$0, %0, 1f\n"
"\tmovl\t$0, %1\n" /* _SPLINLOCK_UNLOCKED */
"1:\n" : "=m" (*l), "=r" (old) : "0" (*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__
("\tmovl\t$1, %1\n" /* _SPLINLOCK_LOCKED */
"\tbbssi\t$0, %0, 1f\n"
"\tmovl\t$0, %1\n" /* _SPLINLOCK_UNLOCKED */
"1:\n" : "=m" (*l), "=r" (old) : "0" (*l));
return (old == __SIMPLELOCK_UNLOCKED);
}
static __inline__ void
__cpu_simple_unlock(__cpu_simple_lock_t *l)
{
*l = __SIMPLELOCK_UNLOCKED;
}
#endif /* _VAX_LOCK_H_ */
|