diff options
author | Marvin Borner | 2020-05-09 17:39:31 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-09 17:39:31 +0200 |
commit | 09a66e91ec9e8a677aa48f27798753084f213713 (patch) | |
tree | 9685a13b459e60d830179c565417ed72ae855ebe /src/kernel/fs | |
parent | 3a97fef4bb4780e4bc2423699063d40cbf5da923 (diff) |
Replaced fork() with spawn()!
Who needs forks anyway
Diffstat (limited to 'src/kernel/fs')
-rw-r--r-- | src/kernel/fs/elf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/fs/elf.c b/src/kernel/fs/elf.c index 3d7fcde..be1bc95 100644 --- a/src/kernel/fs/elf.c +++ b/src/kernel/fs/elf.c @@ -1,6 +1,7 @@ #include <fs/elf.h> #include <fs/ext2.h> #include <gdt/gdt.h> +#include <io/io.h> #include <lib/lib.h> #include <lib/stdio.h> #include <lib/stdlib.h> @@ -24,6 +25,7 @@ int is_elf(struct elf_header *header) struct process *elf_load(char *path) { + cli(); u8 *file = read_file(path); if (!file) { warn("File or directory not found: %s", path); @@ -71,5 +73,6 @@ struct process *elf_load(char *path) } paging_switch_directory(paging_root_directory); + sti(); return proc; -} +}
\ No newline at end of file |