PatchworkOS
Loading...
Searching...
No Matches
init.c
Go to the documentation of this file.
2
4#include "heap.h"
5#include "time_utils.h"
6
7#ifndef __KERNEL__
8#include "user/user.h"
9#endif
10
11#include <sys/io.h>
12
13void _std_init(void)
14{
15#ifndef __KERNEL__
16 _user_init();
17#endif
18
19 _heap_init();
22}
void _constraint_handler_init(void)
void _heap_init(void)
Initialize the heap.
Definition heap.c:62
void _user_init(void)
Definition user.c:27
void _std_init(void)
Definition init.c:13
void _time_zone_init(void)
Definition time_utils.c:5