| 1 | /*	$OpenBSD: spinlock.h,v 1.5 2017/09/05 02:40:54 guenther Exp $	*/ |
| 2 | /* Public domain */ |
| 3 | |
| 4 | #ifndef _MIPS64_SPINLOCK_H_ |
| 5 | #define _MIPS64_SPINLOCK_H_ |
| 6 | |
| 7 | #define _ATOMIC_LOCK_UNLOCKED	(0) |
| 8 | #define _ATOMIC_LOCK_LOCKED	(1) |
| 9 | typedef int _atomic_lock_t; |
| 10 | |
| 11 | #endif /* !_MIPS64_SPINLOCK_H_ */ |