blob: 283a41903e34098315303e870f0366477a8e11e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $OpenBSD: spinlock.h,v 1.2 2004/08/10 21:10:56 pefo Exp $ */
/* Public domain */
#ifndef _MIPS_SPINLOCK_H_
#define _MIPS_SPINLOCK_H_
#define _SPINLOCK_UNLOCKED (0)
#define _SPINLOCK_LOCKED (1)
typedef int _spinlock_lock_t;
#endif /* !_MIPS_SPINLOCK_H_ */
|