xref: /openbsd-src/sys/arch/arm/include/spinlock.h (revision a28daedfc357b214be5c701aa8ba8adb29a7f1c2)
1 /*	$OpenBSD: spinlock.h,v 1.1 2004/02/01 05:09:49 drahn Exp $	*/
2 
3 #ifndef _ARM_SPINLOCK_H_
4 #define _ARM_SPINLOCK_H_
5 
6 #define _SPINLOCK_UNLOCKED	(0)
7 #define _SPINLOCK_LOCKED	(1)
8 typedef int _spinlock_lock_t;
9 
10 #endif
11