Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) 2020 ARM Ltd.
0004  */
0005 #ifndef __ASM_VDSO_PROCESSOR_H
0006 #define __ASM_VDSO_PROCESSOR_H
0007 
0008 #ifndef __ASSEMBLY__
0009 
0010 static inline void cpu_relax(void)
0011 {
0012     asm volatile("yield" ::: "memory");
0013 }
0014 
0015 #endif /* __ASSEMBLY__ */
0016 
0017 #endif /* __ASM_VDSO_PROCESSOR_H */