#ifndef ASM_NMI_H #define ASM_NMI_H #include struct cpu_user_regs; /* Watchdog boolean from the command line */ extern bool opt_watchdog; /* Watchdog force parameter from the command line */ extern bool watchdog_force; typedef int nmi_callback_t(const struct cpu_user_regs *regs, int cpu); /** * set_nmi_callback * * Set a handler for an NMI. Only one handler may be * set. Return the old nmi callback handler. */ nmi_callback_t *set_nmi_callback(nmi_callback_t *callback); /** * unset_nmi_callback * * Remove the handler previously set. */ void unset_nmi_callback(void); #endif /* ASM_NMI_H */