xref: /kvm-unit-tests/lib/arm/asm/spinlock.h (revision 5e61cba06248d9f2926804b7fb900fe9d721e86c)
1 #ifndef _ASMARM_SPINLOCK_H_
2 #define _ASMARM_SPINLOCK_H_
3 
4 struct spinlock {
5 	int v;
6 };
7 
8 //TODO
9 static inline void spin_lock(struct spinlock *lock __unused)
10 {
11 }
12 static inline void spin_unlock(struct spinlock *lock __unused)
13 {
14 }
15 
16 #endif /* _ASMARM_SPINLOCK_H_ */
17