blob: dfdcbd038a992d3303406d81e1b8040ffe66aee3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __CLOCK_X86_H__
#define __CLOCK_X86_H__
#include "../apic_asm.h"
int init_8253A_timer(unsigned freq);
void stop_8253A_timer(void);
void arch_timer_int_handler(void);
#endif /* __CLOCK_X86_H__ */
|