mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
14 lines
285 B
C
14 lines
285 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
#ifndef SELFTEST_KVM_ARM64_SPINLOCK_H
|
||
|
#define SELFTEST_KVM_ARM64_SPINLOCK_H
|
||
|
|
||
|
struct spinlock {
|
||
|
int v;
|
||
|
};
|
||
|
|
||
|
extern void spin_lock(struct spinlock *lock);
|
||
|
extern void spin_unlock(struct spinlock *lock);
|
||
|
|
||
|
#endif /* SELFTEST_KVM_ARM64_SPINLOCK_H */
|