summaryrefslogtreecommitdiff
path: root/src/kernel/main.c
diff options
context:
space:
mode:
authordzwdz2021-07-26 19:44:10 +0200
committerdzwdz2021-07-26 19:44:10 +0200
commit9fa85569ba6785576af675d6cb74323bbc937050 (patch)
tree25edf2a4102398192c86de9297571f14069f79ac /src/kernel/main.c
parent3c8cc57cd1d7b04ab92dc80bc0e0c9a481d905f8 (diff)
rename process_new() to process_seed()
it's only meant to create the root process, the old name could've been misleading
Diffstat (limited to 'src/kernel/main.c')
-rw-r--r--src/kernel/main.c2
1 files changed, 1 insertions, 1 deletions
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 <stdint.h>
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