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 39e48d9b128abbd2ea9b8403bb1e2693323db2f4 14 lines 323 B view raw
1#ifndef _LINUX_IRQHANDLER_H 2#define _LINUX_IRQHANDLER_H 3 4/* 5 * Interrupt flow handler typedefs are defined here to avoid circular 6 * include dependencies. 7 */ 8 9struct irq_desc; 10struct irq_data; 11typedef void (*irq_flow_handler_t)(struct irq_desc *desc); 12typedef void (*irq_preflow_handler_t)(struct irq_data *data); 13 14#endif