aboutsummaryrefslogtreecommitdiff
path: root/include/arch/irq.h
blob: 15ad893fdd8d2dcc3f489f21bef467304061fc0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef APOS_IRQ_H
#define APOS_IRQ_H

/**
 * @file irq.h
 * Arch-specific interrupt handling, generally implemented in
 * arch/whatever/kernel/irq.c
 */

void init_irq(void *fdt);
void handle_irq();
void enable_irq();
void disable_irq();

#endif /* APOS_IRQ_H */