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

Configure Feed

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

at v6.19-rc4 19 lines 411 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* spinlock.h: 64-bit Sparc spinlock support. 3 * 4 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) 5 */ 6 7#ifndef __SPARC64_SPINLOCK_H 8#define __SPARC64_SPINLOCK_H 9 10#ifndef __ASSEMBLER__ 11 12#include <asm/processor.h> 13#include <asm/barrier.h> 14#include <asm/qspinlock.h> 15#include <asm/qrwlock.h> 16 17#endif /* !(__ASSEMBLER__) */ 18 19#endif /* !(__SPARC64_SPINLOCK_H) */