summaryrefslogtreecommitdiff
path: root/src/kernel/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/proc.c')
-rw-r--r--src/kernel/proc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/kernel/proc.c b/src/kernel/proc.c
index cfc4b5e..324f0b4 100644
--- a/src/kernel/proc.c
+++ b/src/kernel/proc.c
@@ -38,8 +38,6 @@ struct process *process_seed(struct kmain_info *info) {
true, true);
process_first->regs.rcx = (uintptr_t)init_base; // SYSRET jumps to %rcx
- process_first->pages = pagedir_copy(process_first->pages); // TODO remove this
-
return process_first;
}