diff options
author | Alexis211 <alexis211@gmail.com> | 2010-02-09 17:48:38 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-02-09 17:48:38 +0100 |
commit | 3e1998280319e8060e797ca39b3b0b1bc766d569 (patch) | |
tree | 045c5a3e7d12a499a8f107e1223ae6880600a8c1 /src/kernel/core/kmain.c | |
parent | 4886faa3dce410543eda2139221e03959e73a747 (diff) | |
download | TCE-3e1998280319e8060e797ca39b3b0b1bc766d569.tar.gz TCE-3e1998280319e8060e797ca39b3b0b1bc766d569.zip |
Added thread_new syscall
Diffstat (limited to 'src/kernel/core/kmain.c')
-rw-r--r-- | src/kernel/core/kmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/core/kmain.c b/src/kernel/core/kmain.c index 4a4da05..0a94fde 100644 --- a/src/kernel/core/kmain.c +++ b/src/kernel/core/kmain.c @@ -49,7 +49,7 @@ void kmain(struct multiboot_info_t* mbd, int32_t magic) { if (elf_check((uint8_t*)mods[i].mod_start)) { monitor_write(" : Invalid ELF file\n"); } else { - if (elf_exec((uint8_t*)mods[i].mod_start, PL_SERVICE) == 0) { + if (elf_exec((uint8_t*)mods[i].mod_start, PL_DRIVER) == 0) { monitor_write(" : Error loading\n"); } else { monitor_write(" : OK\n"); |