1 /* $OpenBSD: spinlock.h,v 1.1 2004/01/28 01:39:39 mickey Exp $ */ 2 3 #ifndef _MACHINE_SPINLOCK_H_ 4 #define _MACHINE_SPINLOCK_H_ 5 6 #define _SPINLOCK_UNLOCKED (0) 7 #define _SPINLOCK_LOCKED (1) 8 typedef int _spinlock_lock_t; 9 10 #endif 11
1 /* $OpenBSD: spinlock.h,v 1.1 2004/01/28 01:39:39 mickey Exp $ */ 2 3 #ifndef _MACHINE_SPINLOCK_H_ 4 #define _MACHINE_SPINLOCK_H_ 5 6 #define _SPINLOCK_UNLOCKED (0) 7 #define _SPINLOCK_LOCKED (1) 8 typedef int _spinlock_lock_t; 9 10 #endif 11