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 v4.0 13 lines 298 B view raw
1#ifndef _LINUX_FTRACE_IRQ_H 2#define _LINUX_FTRACE_IRQ_H 3 4 5#ifdef CONFIG_FTRACE_NMI_ENTER 6extern void ftrace_nmi_enter(void); 7extern void ftrace_nmi_exit(void); 8#else 9static inline void ftrace_nmi_enter(void) { } 10static inline void ftrace_nmi_exit(void) { } 11#endif 12 13#endif /* _LINUX_FTRACE_IRQ_H */