1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-02-17 15:45:37 -05:00
kernel/hwint.h

10 lines
237 B
C
Raw Normal View History

2017-11-03 02:51:24 +00:00
#ifndef KERNELMQ_INCLUDED_HWINT
#define KERNELMQ_INCLUDED_HWINT 1
2017-11-03 05:10:07 +00:00
typedef void(*hwint_handler_t)();
void hwint_register_handler(unsigned int int_no, hwint_handler_t handler);
void hwint_unregister_handler(unsigned int int_no);
2017-11-03 05:10:07 +00:00
2017-11-03 02:51:24 +00:00
#endif