blob: e41f60075d3f588c7d40da3fd2f4a7015804c99a (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $OpenBSD: spinlock.h,v 1.4 2017/09/05 02:40:54 guenther Exp $ */
#ifndef _POWERPC_SPINLOCK_H_
#define _POWERPC_SPINLOCK_H_
#define _ATOMIC_LOCK_UNLOCKED (0)
#define _ATOMIC_LOCK_LOCKED (1)
typedef int _atomic_lock_t;
#endif
|