summaryrefslogtreecommitdiff
path: root/kernel/smp.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-26 12:48:43 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-26 12:48:43 +0100
commit786bd02b01d80e335d4445698d721213a1884ff5 (patch)
treef10b97cca2e03c279cd5884919c23de03d3e7223 /kernel/smp.h
parentaad4bfe0261ea623342adc392728281be5062967 (diff)
some cleanup
Diffstat (limited to 'kernel/smp.h')
-rw-r--r--kernel/smp.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/kernel/smp.h b/kernel/smp.h
deleted file mode 100644
index 8737ffc..0000000
--- a/kernel/smp.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef SMP_H
-#define SMP_H
-
-#define SMP_MAX_PROC 32
-
-typedef struct
-{
-
- uint8_t boot; //which processor in array is bsp
- // (boot strap processor)
-
- uint8_t processors; // total number of usable processors
-
- uint32_t local_apic_address;// same for every processor
-
- uint32_t local_apic_id[SMP_MAX_PROC]; // unique for every processor
-
-}smp_processors;
-
-#endif