diff options
Diffstat (limited to 'common/tcb.c')
| -rw-r--r-- | common/tcb.c | 6 |
1 files changed, 2 insertions, 4 deletions
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; } |
