blob: 46c7688f64f0dadf14a420f039cee323dd108cf6 (
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
|
/* $OpenBSD: atomic.h,v 1.4 2011/03/23 16:54:35 pirofti Exp $ */
/* Public Domain */
#ifndef _M68K_ATOMIC_H_
#define _M68K_ATOMIC_H_
#if defined(_KERNEL)
static __inline void
atomic_setbits_int(__volatile unsigned int *uip, unsigned int v)
{
unsigned int witness, old, new;
do {
witness = old = *uip;
new = old | v;
__asm__ __volatile__ (
"casl %0, %2, %1" : "+d"(old), "=m"(*uip) : "d"(new));
} while (old != witness);
}
static __inline void
atomic_clearbits_int(__volatile unsigned int *uip, unsigned int v)
{
unsigned int witness, old, new;
do {
witness = old = *uip;
new = old & ~v;
__asm__ __volatile__ (
"casl %0, %2, %1" : "+d"(old), "=m"(*uip) : "d"(new));
} while (old != witness);
}
#endif /* defined(_KERNEL) */
#endif /* _M68K_ATOMIC_H_ */
|