From 0bd3518117ad29ffc91c7967068abc9948cc4885 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 14 Oct 2022 15:19:08 +0300 Subject: remove references to cow + Skip cow for now, maybe implement later but try to keep things simple. --- common/tcb.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'common/tcb.c') diff --git a/common/tcb.c b/common/tcb.c index 9768eb0..94abef7 100644 --- a/common/tcb.c +++ b/common/tcb.c @@ -170,7 +170,7 @@ struct tcb *create_thread(struct tcb *p) } /** - * Copy process, setting up COW. + * Copy process. * * @param p Parent process. * @param n New process. @@ -178,9 +178,7 @@ struct tcb *create_thread(struct tcb *p) */ static stat_t __copy_proc(struct tcb *p, struct tcb *n) { - /** \todo Copy memory regions, and mark them MR_COW, as well as copy - * bm_branch tree but with VM_W off, also at some point write COW - * handler */ + /** \todo Copy memory regions as well as copy */ return OK; } -- cgit v1.3