Kernelite 0.1.0
Kernelite is a minimalist, educational operating system kernel built from scratch. The project aims to recreate core components of the Linux architecture to explore the fundamentals of operating system design and hardware-software interaction.
Loading...
Searching...
No Matches
timer.h
Go to the documentation of this file.
1
13#ifndef TIMER_TIMER_H
14#define TIMER_TIMER_H
15
16#include "icu/icu.h"
17
18#include <stdbool.h>
19#include <stdint.h>
20
31bool setup_sys_timer(const void *fdt, uint64_t milliseconds,
32 handler_data_t handler);
33
34#endif /* TIMER_TIMER_H */
Interrupt Controller Unit (ICU) interface.
Interrupt handler registration entry.
Definition icu.h:25
bool setup_sys_timer(const void *fdt, uint64_t milliseconds, handler_data_t handler)
Configure the system timer's tick period and interrupt handler.
Definition timer.c:25