xref: /openbsd-src/sys/arch/arm/include/spinlock.h (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1 /*	$OpenBSD: spinlock.h,v 1.3 2017/09/05 02:40:54 guenther Exp $	*/
2 
3 #ifndef _ARM_SPINLOCK_H_
4 #define _ARM_SPINLOCK_H_
5 
6 #define _ATOMIC_LOCK_UNLOCKED	(0)
7 #define _ATOMIC_LOCK_LOCKED	(1)
8 typedef int _atomic_lock_t;
9 
10 #endif
11