From 9fa85569ba6785576af675d6cb74323bbc937050 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 26 Jul 2021 19:44:10 +0200 Subject: rename process_new() to process_seed() it's only meant to create the root process, the old name could've been misleading --- src/kernel/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/main.c') diff --git a/src/kernel/main.c b/src/kernel/main.c index 894ce18..7864699 100644 --- a/src/kernel/main.c +++ b/src/kernel/main.c @@ -7,7 +7,7 @@ #include static void run_init(struct kmain_info *info) { - struct process *proc = process_new(); + struct process *proc = process_seed(); void *init_base = (void*) 0x200000; // map the module as rw -- cgit v1.2.3