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