blob: 72e6500e7ab09ef5900e99a50d1fbe6bc35ef0ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __NMI_H
#define __NMI_H
extern int __init nmi_init(void);
extern void perfctr_irq(int irq, struct pt_regs *regs);
extern void nmi_adjust_hz(unsigned int new_hz);
extern atomic_t nmi_active;
extern void start_nmi_watchdog(void *unused);
extern void stop_nmi_watchdog(void *unused);
#endif /* __NMI_H */
|