kernel/include/linux/delay.h
.. .. @@ -64,4 +64,10 @@ 64 64 msleep(seconds * 1000); 65 65 } 66 66 67 +#ifdef CONFIG_PREEMPT_RT_FULL68 +extern void cpu_chill(void);69 +#else70 +# define cpu_chill() cpu_relax()71 +#endif72 +67 73 #endif /* defined(_LINUX_DELAY_H) */