xref: /kvm-unit-tests/lib/arm/asm/spinlock.h (revision d3aacb4f57d05f74f2030dbe12e7dfd6aa1b273d)
1 #ifndef _ASMARM_SPINLOCK_H_
2 #define _ASMARM_SPINLOCK_H_
3 
4 struct spinlock {
5 	int v;
6 };
7 
8 extern void spin_lock(struct spinlock *lock);
9 extern void spin_unlock(struct spinlock *lock);
10 
11 #endif /* _ASMARM_SPINLOCK_H_ */
12