You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
314 B
13 lines
314 B
#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 */
|
|
|