Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.8-rc3 13 lines 285 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef SELFTEST_KVM_ARM64_SPINLOCK_H 4#define SELFTEST_KVM_ARM64_SPINLOCK_H 5 6struct spinlock { 7 int v; 8}; 9 10extern void spin_lock(struct spinlock *lock); 11extern void spin_unlock(struct spinlock *lock); 12 13#endif /* SELFTEST_KVM_ARM64_SPINLOCK_H */