aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/timer/timer.h
blob: 2315b6204c4d8ba130be0ede91ce1aa788e95883 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef MELVIX_TIMER_H
#define MELVIX_TIMER_H

#include <stdint.h>
#include <kernel/interrupts/interrupts.h>

void timer_handler(struct regs *r);

/**
 * Install the timer and set the timer phase to 100
 */
void timer_install();

/**
 * Stop processing for specific duration
 * @param ticks The duration of sleeping in ticks
 */
void timer_wait(int ticks);

/**
 * Get the current timer ticks
 * @return The current timer ticks (1000 ticks = 1 second)
 */
uint32_t get_time();

#endif