blob: a245c351fd4987267a169d8e48b04bddd4d169f8 (
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 (0)
#define _SPINLOCK_LOCKED (1)
typedef int _spinlock_lock_t;
#endif
|