diff options
author | Richard Braun <rbraun@sceen.net> | 2012-11-09 21:35:49 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2012-11-09 21:40:52 +0100 |
commit | 79b5932c4eea229fca427bc93ba491ffecef10f5 (patch) | |
tree | bf1165e7fa7c2f6232fd8c1e8b6c148b329b42f7 /arch/x86/machine/boot.c | |
parent | c8ba9280fafe518ada8a6d2a545d6afa2b2dbe23 (diff) |
Implement preliminary thread context
Three new modules are added :
- kern/task: Tasks are thread groups and resource containers for their
threads.
- kern/thread: The well known scheduling unit.
- x86/tcb: The architecture specific thread control block.
The kernel currently loads a single thread context on the main processor.
Diffstat (limited to 'arch/x86/machine/boot.c')
-rw-r--r-- | arch/x86/machine/boot.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/machine/boot.c b/arch/x86/machine/boot.c index 331d44ea..5a5148f0 100644 --- a/arch/x86/machine/boot.c +++ b/arch/x86/machine/boot.c @@ -280,7 +280,6 @@ boot_main(void) vm_phys_info(); pic_setup(); pit_setup(); - cpu_mp_setup(); kernel_main(); /* Never reached */ |