summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include/spinlock.h
blob: 87e9be5a7687d46621111fdb5ae416ea63c5b22a (plain)
1
2
3
4
5
6
7
8
9
10
11
/*	$OpenBSD: spinlock.h,v 1.3 2011/03/23 16:54:36 pirofti Exp $	*/
 /* Public domain */

#ifndef _MIPS64_SPINLOCK_H_
#define _MIPS64_SPINLOCK_H_

#define _SPINLOCK_UNLOCKED	(0)
#define _SPINLOCK_LOCKED	(1)
typedef int _spinlock_lock_t;

#endif /* !_MIPS64_SPINLOCK_H_ */