diff options
| author | Miguel <m.i@gmx.at> | 2018-09-09 11:49:30 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-09 11:49:30 +0200 |
| commit | e85a68e1536a0f6505300e1cb79f06b9743b00f7 (patch) | |
| tree | c503a7681720925c5f4923e26c01f7b2e697023d /kernel/smp.c | |
| parent | fc1d491479abd74a1e038ad9ff7d4d330d79e4a8 (diff) | |
fixing implicit func declarations!
Diffstat (limited to 'kernel/smp.c')
| -rw-r--r-- | kernel/smp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/smp.c b/kernel/smp.c index 0c8d2dd..c965b2e 100644 --- a/kernel/smp.c +++ b/kernel/smp.c @@ -7,9 +7,14 @@ #include <stdint.h> #include "smp.h" +#include "gdt.h" #include "mem.h" +#include "interrupts.h" +#include "kmalloc.h" #include "spinlock.h" #include "asm_x86.h" +#include "asm_pit.h" +#include "asm_mp.h" #define APIC_APICID 0x20 #define APIC_APICVER 0x30 |
