xref: /openbsd/sys/arch/m88k/include/spinlock.h (revision 404b540a)
1 /*	$OpenBSD: spinlock.h,v 1.1 2004/04/26 12:34:05 miod Exp $	*/
2 
3 #ifndef _M88K_SPINLOCK_H_
4 #define _M88K_SPINLOCK_H_
5 
6 #define _SPINLOCK_UNLOCKED	(0)
7 #define _SPINLOCK_LOCKED	(1)
8 typedef int _spinlock_lock_t;
9 
10 #endif
11