blob: 75d9a298389c0d45b3b1e7ed76827df7f67e5a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <kernel/arch/generic.h>
#include <kernel/main.h>
#include <kernel/mem/alloc.h>
#include <kernel/proc.h>
#include <kernel/tests/tests.h>
#include <kernel/util.h>
#include <stdint.h>
void kmain(struct kmain_info info) {
kprintf("tests...\n");
tests_all();
kprintf("loading init...\n");
process_seed(&info);
kprintf("switching...\n");
process_switch_any();
}
void shutdown(void) {
kprintf("shutting off\n");
mem_debugprint();
cpu_shutdown();
}
|