blob: a429cc3910b44b07ec67b3bf8ab36aaa7fe5ba29 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $OpenBSD: spinlock.h,v 1.1 1999/01/08 08:25:34 d Exp $ */
#ifndef _MACHINE_SPINLOCK_H_
#define _MACHINE_SPINLOCK_H_
#define _SPINLOCK_UNLOCKED (1)
#define _SPINLOCK_LOCKED (0)
typedef int _spinlock_lock_t;
#endif
|