[USER] System calls

This commit is contained in:
2016-12-06 15:50:35 +01:00
parent 63b3c3f2c0
commit a7d2b24a79
9 changed files with 166 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
#include <mem.h>
#include <gdt.h>
#include <string.h>
#include <syscall.h>
cpu_t cpus[MAX_NUMCPU];
unsigned int num_cpu = 0;
@@ -38,6 +39,7 @@ void init_cpu()
gdt_init();
sse_init();
scheduler_init();
syscall_init();
}
void cpu_init()