mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
8 lines
185 B
C
8 lines
185 B
C
#ifndef KERNELMQ_INCLUDED_HWINT
|
|
#define KERNELMQ_INCLUDED_HWINT 1
|
|
|
|
typedef void(*hwint_handler_t)();
|
|
|
|
void hwint_register_handler(unsigned int int_no, hwint_handler_t handler);
|
|
|
|
#endif
|