Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13 14 lines 318 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __NMI_H 3#define __NMI_H 4 5int __init nmi_init(void); 6void perfctr_irq(int irq, struct pt_regs *regs); 7void nmi_adjust_hz(unsigned int new_hz); 8 9extern atomic_t nmi_active; 10 11void start_nmi_watchdog(void *unused); 12void stop_nmi_watchdog(void *unused); 13 14#endif /* __NMI_H */