summaryrefslogtreecommitdiff
path: root/kernel/include/timer.h
blob: a86bfe7517e06e88cb35324ca61020571fbe38f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TIMER_H
#define TIMER_H

#include <types.h>

#define TICKS_PER_SECOND 1000
#define CONTEXT_SWITCHES_PER_SECOND 20

void timer_handler(uint64_t rsp);
void wait(uint64_t ms);
void init_timer(uint32_t frequency);

#endif