
. fixes needed to build Minix/ARM with LLVM without errors, mostly size_t cleanness Change-Id: If4dd0a23bc5cb399296073920a8940c34b4caef4
16 lines
313 B
C
16 lines
313 B
C
#ifndef __HW_INTR_ARM_H__
|
|
#define __HW_INTR_ARM_H__
|
|
|
|
|
|
#include "kernel/kernel.h"
|
|
void irq_handle(int irq);
|
|
|
|
void hw_intr_mask(int irq);
|
|
void hw_intr_unmask(int irq);
|
|
void hw_intr_ack(int irq);
|
|
void hw_intr_used(int irq);
|
|
void hw_intr_not_used(int irq);
|
|
void hw_intr_disable_all();
|
|
|
|
#endif /* __HW_INTR_ARM_H__ */
|