mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 23:29:03 +00:00
10 lines
No EOL
229 B
C
Vendored
10 lines
No EOL
229 B
C
Vendored
/* $OpenBSD: spinlock.h,v 1.3 2017/09/05 02:40:54 guenther Exp $ */
|
|
|
|
#ifndef _MACHINE_SPINLOCK_H_
|
|
#define _MACHINE_SPINLOCK_H_
|
|
|
|
#define _ATOMIC_LOCK_UNLOCKED (0)
|
|
#define _ATOMIC_LOCK_LOCKED (1)
|
|
typedef int _atomic_lock_t;
|
|
|
|
#endif |