blob: d04b7ec382c46cc9f4a0ed08043365083949e32b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $OpenBSD: atomic.h,v 1.1 2007/02/06 17:13:33 art Exp $ */
/* Public Domain */
#ifndef __HPPA_ATOMIC_H__
#define __HPPA_ATOMIC_H__
static __inline void
atomic_setbits_int(__volatile unsigned int *uip, unsigned int v)
{
*uip |= v;
}
static __inline void
atomic_clearbits_int(__volatile unsigned int *uip, unsigned int v)
{
*uip &= ~v;
}
#endif
|