1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
28 lines
488 B
C
28 lines
488 B
C
/*
|
|
* linux/include/asm-i386/nmi.h
|
|
*/
|
|
#ifndef ASM_NMI_H
|
|
#define ASM_NMI_H
|
|
|
|
#include <linux/pm.h>
|
|
|
|
struct pt_regs;
|
|
|
|
typedef int (*nmi_callback_t)(struct pt_regs * regs, int cpu);
|
|
|
|
/**
|
|
* set_nmi_callback
|
|
*
|
|
* Set a handler for an NMI. Only one handler may be
|
|
* set. Return 1 if the NMI was handled.
|
|
*/
|
|
void set_nmi_callback(nmi_callback_t callback);
|
|
|
|
/**
|
|
* unset_nmi_callback
|
|
*
|
|
* Remove the handler previously set.
|
|
*/
|
|
void unset_nmi_callback(void);
|
|
|
|
#endif /* ASM_NMI_H */
|