aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/elf.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-09 17:39:31 +0200
committerMarvin Borner2020-05-09 17:39:31 +0200
commit09a66e91ec9e8a677aa48f27798753084f213713 (patch)
tree9685a13b459e60d830179c565417ed72ae855ebe /src/kernel/fs/elf.c
parent3a97fef4bb4780e4bc2423699063d40cbf5da923 (diff)
Replaced fork() with spawn()!
Who needs forks anyway
Diffstat (limited to 'src/kernel/fs/elf.c')
-rw-r--r--src/kernel/fs/elf.c5
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