blob: 0a4519f2db9656de889fe4455a9d3c4f433958a9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $OpenBSD: spinlock.h,v 1.2 1999/02/07 23:50:59 d Exp $ */
#ifndef _MACHINE_SPINLOCK_H_
#define _MACHINE_SPINLOCK_H_
#define _SPINLOCK_UNLOCKED (0x00)
#define _SPINLOCK_LOCKED (0xFF)
typedef unsigned char _spinlock_lock_t;
#endif
|