summaryrefslogtreecommitdiff
path: root/kernel/smp.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/smp.c')
-rw-r--r--kernel/smp.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/kernel/smp.c b/kernel/smp.c
index d4bb6a1..4fe0705 100644
--- a/kernel/smp.c
+++ b/kernel/smp.c
@@ -3,9 +3,6 @@
// http://download.intel.com/design/chipsets/datashts/29056601.pdf
// http://www.scs.stanford.edu/05au-cs240c/lab/ia32/IA32-3.pdf
-
-
-
#include <stdint.h>
#include "smp.h"
#include "mem.h"
@@ -28,7 +25,7 @@ void smp_main()
{
x86_cli();
- klog("local apic_addr:0x%08X",local_apic_addr);
+// klog("local apic_addr:0x%08X",local_apic_addr);
while(1); //TODO!!!
@@ -127,7 +124,3 @@ void smp_start_aps(smp_processors *pros,char *path)
*reg=(6<<8)|(1<<14)|0x7; // 110 SIPI
}
}
-
-
-
-