summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r--src/kernel/proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h
index 3d3459d..7389b74 100644
--- a/src/kernel/proc.h
+++ b/src/kernel/proc.h
@@ -60,7 +60,7 @@ extern struct process *process_first;
extern struct process *process_current;
// creates the root process
-struct process *process_seed(void);
+struct process *process_seed(struct kmain_info *info);
struct process *process_fork(struct process *parent);
void process_free(struct process *);
_Noreturn void process_switch_any(void); // switches to any running process