[SMP] SMP synchronization and scheduling

This commit is contained in:
2016-11-18 09:36:01 +01:00
parent 8961ae33eb
commit 474914ab1e
12 changed files with 69 additions and 18 deletions

View File

@@ -6,9 +6,13 @@
#include <vga.h>
#include <serial.h>
#include <registers.h>
#include <cpu.h>
lock_t debug_lock;
void debug_init()
{
spin_unlock(&debug_lock);
vga_init();
serial_init(PORT_COM1);
}