summaryrefslogtreecommitdiffstats
path: root/sys/arch/m88k/include/spinlock.h
blob: 61a9d2d73ad86f28fe1313cc48e31fc4670f6f90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/*	$OpenBSD: spinlock.h,v 1.3 2017/09/05 02:40:54 guenther Exp $	*/

#ifndef _M88K_SPINLOCK_H_
#define _M88K_SPINLOCK_H_

#define _ATOMIC_LOCK_UNLOCKED	(0)
#define _ATOMIC_LOCK_LOCKED	(1)
typedef int _atomic_lock_t;

#endif