diff options
author | Richard Braun <rbraun@sceen.net> | 2013-05-19 15:28:13 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-05-19 15:31:42 +0200 |
commit | 660d612852c124cf03a63a1b4d1f338a43ffaddb (patch) | |
tree | 7db40458fefe86b4eb59d85a4ea8c07666e54455 /kern/kernel.c | |
parent | 9aef0adf731222e73b684e137aa4451417610db9 (diff) |
kern/cpumap: new module
Diffstat (limited to 'kern/kernel.c')
-rw-r--r-- | kern/kernel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/kernel.c b/kern/kernel.c index 1acd5308..afeb1719 100644 --- a/kern/kernel.c +++ b/kern/kernel.c @@ -15,6 +15,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <kern/cpumap.h> #include <kern/init.h> #include <kern/kernel.h> #include <kern/llsync.h> @@ -32,6 +33,7 @@ kernel_main(void) cpu_intr_enable(); /* Initialize the kernel */ + cpumap_setup(); task_setup(); thread_setup(); llsync_setup(); |