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 v5.12-rc7 9 lines 335 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __TOOLS_LINUX_ASM_ALPHA_BARRIER_H 3#define __TOOLS_LINUX_ASM_ALPHA_BARRIER_H 4 5#define mb() __asm__ __volatile__("mb": : :"memory") 6#define rmb() __asm__ __volatile__("mb": : :"memory") 7#define wmb() __asm__ __volatile__("wmb": : :"memory") 8 9#endif /* __TOOLS_LINUX_ASM_ALPHA_BARRIER_H */