nmi.h 279 B

12345678910111213
  1. #ifndef __NMI_H
  2. #define __NMI_H
  3. int __init nmi_init(void);
  4. void perfctr_irq(int irq, struct pt_regs *regs);
  5. void nmi_adjust_hz(unsigned int new_hz);
  6. extern atomic_t nmi_active;
  7. void start_nmi_watchdog(void *unused);
  8. void stop_nmi_watchdog(void *unused);
  9. #endif /* __NMI_H */