📄 nmi.h
字号:
/* * linux/include/linux/nmi.h */#ifndef LINUX_NMI_H#define LINUX_NMI_H#include <asm/irq.h>/** * touch_nmi_watchdog - restart NMI watchdog timeout. * * If the architecture supports the NMI watchdog, touch_nmi_watchdog() * may be used to reset the timeout - for code which intentionally * disables interrupts for a long time. This call is stateless. */#ifdef ARCH_HAS_NMI_WATCHDOGextern void touch_nmi_watchdog(void);#else# define touch_nmi_watchdog() do { } while(0)#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -