nmi.h 318 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NMI_H
  3. #define __NMI_H
  4. int __init nmi_init(void);
  5. void perfctr_irq(int irq, struct pt_regs *regs);
  6. void nmi_adjust_hz(unsigned int new_hz);
  7. extern atomic_t nmi_active;
  8. void start_nmi_watchdog(void *unused);
  9. void stop_nmi_watchdog(void *unused);
  10. #endif /* __NMI_H */