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/tasks/process.h | |
parent | 3a97fef4bb4780e4bc2423699063d40cbf5da923 (diff) |
Replaced fork() with spawn()!
Who needs forks anyway
Diffstat (limited to 'src/kernel/tasks/process.h')
-rw-r--r-- | src/kernel/tasks/process.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/kernel/tasks/process.h b/src/kernel/tasks/process.h index 17467c4..8221a85 100644 --- a/src/kernel/tasks/process.h +++ b/src/kernel/tasks/process.h @@ -23,10 +23,6 @@ struct process { int state; int thread; - u32 stdin; - u32 stdout; - u32 stderr; - u32 brk; u32 handlers[6]; @@ -57,6 +53,7 @@ struct process *process_make_new(); u32 kexec(char *path); u32 uexec(char *path); +u32 uspawn(char *path); extern struct process *current_proc; |