summaryrefslogtreecommitdiff
path: root/kernel/smp.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-23 03:20:56 +0200
committerMiguel <m.i@gmx.at>2018-08-23 03:20:56 +0200
commit4404fa9b3d98646f942e32146722a9d0a68edc13 (patch)
tree79e494ec81a462db0217fc763a7ddae1827c02bd /kernel/smp.c
parent98bf7b67543b36b6fe49f2b68c115ebeaf630603 (diff)
never ending struggle with forking
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
}
}
-
-
-
-