diff options
author | Michael Foiani <mfoiani@cs.brown.edu> | 2024-05-15 18:17:49 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani@cs.brown.edu> | 2024-05-15 18:17:49 -0400 |
commit | 3942ec1841219e9d1033f583ebfcf687cb76a4af (patch) | |
tree | 13168b263ee28ce2d0867cac47b0fc90bf23b815 /kernel/proc/fork.c | |
parent | 77408081bd2622c50d9acbcec18f1c598738fdaa (diff) |
Diffstat (limited to 'kernel/proc/fork.c')
-rw-r--r-- | kernel/proc/fork.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/proc/fork.c b/kernel/proc/fork.c index a6436ba..cd54a7c 100644 --- a/kernel/proc/fork.c +++ b/kernel/proc/fork.c @@ -57,8 +57,6 @@ static uintptr_t fork_setup_stack(const regs_t *regs, void *kstack) */ long do_fork(struct regs *regs) { - // NOT_YET_IMPLEMENTED("VM: do_fork"); - // Create a new process proc_t *child_proc = proc_create("cf"); if (child_proc == NULL) |