1 /* $OpenBSD: spinlock.h,v 1.1 1999/01/08 08:25:34 d 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