1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/kernelmq/timer.h

14 lines
272 B
C
Raw Normal View History

2017-11-03 00:19:48 -04:00
#ifndef KERNELMQ_INCLUDED_TIMER
#define KERNELMQ_INCLUDED_TIMER 1
2017-11-03 01:10:07 -04:00
#include "hwint.h"
typedef hwint_handler_t timer_handler_t;
2017-11-03 00:19:48 -04:00
void timer_initialize(unsigned int frequency);
2017-11-03 01:10:07 -04:00
void timer_register_handler(timer_handler_t handler);
void timer_unregister_handler();
2017-11-03 01:10:07 -04:00
2017-11-03 00:19:48 -04:00
#endif