e2701da5a9
- APIC timer always reprogrammed if expired - timer tick never happens when in kernel => never immediate return from userspace to kernel because of a buffered interrupt - renamed argument to lapic_set_timer_one_shot() - removed arch_ prefix from timer functions
21 lines
639 B
C
21 lines
639 B
C
#ifndef __CLOCK_H__
|
|
#define __CLOCK_H__
|
|
|
|
#include "kernel.h"
|
|
#include "arch_clock.h"
|
|
|
|
_PROTOTYPE(int boot_cpu_init_timer, (unsigned freq));
|
|
_PROTOTYPE(int app_cpu_init_timer, (unsigned freq));
|
|
|
|
_PROTOTYPE(int timer_int_handler, (void));
|
|
|
|
_PROTOTYPE(int init_local_timer, (unsigned freq));
|
|
/* sto p the local timer ticking */
|
|
_PROTOTYPE(void stop_local_timer, (void));
|
|
/* let the time tick again with the original settings after it was stopped */
|
|
_PROTOTYPE(void restart_local_timer, (void));
|
|
_PROTOTYPE(int register_local_timer_handler, (irq_handler_t handler));
|
|
|
|
_PROTOTYPE( u64_t ms_2_cpu_time, (unsigned ms));
|
|
|
|
#endif /* __CLOCK_H__ */
|