aboutsummaryrefslogtreecommitdiff
path: root/include/apos/tcb.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-10-14 15:19:08 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-10-14 15:19:08 +0300
commit0bd3518117ad29ffc91c7967068abc9948cc4885 (patch)
tree5560d514e9880c582462da06048e83e21fc4c258 /include/apos/tcb.h
parent54df2c4c0a61c03cba268e45e0fd85bf2a7e564b (diff)
downloadkmi-0bd3518117ad29ffc91c7967068abc9948cc4885.tar.gz
kmi-0bd3518117ad29ffc91c7967068abc9948cc4885.zip
remove references to cow
+ Skip cow for now, maybe implement later but try to keep things simple.
Diffstat (limited to 'include/apos/tcb.h')
-rw-r--r--include/apos/tcb.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/apos/tcb.h b/include/apos/tcb.h
index 72dcc98..63bf037 100644
--- a/include/apos/tcb.h
+++ b/include/apos/tcb.h
@@ -62,7 +62,7 @@ struct tcb_ctx {
};
/** Enum for notification states. */
-enum tcb_notify_state {
+enum tcb_notify {
/** Thread has notifcations queued. */
NOTIFY_QUEUED,
@@ -178,11 +178,9 @@ struct tcb *create_thread(struct tcb *p);
* Create a new process.
*
* Sets up a new thread in a new process context. If there is a parent thread,
- * its memory regions are copied but made COW.
+ * its memory regions are copied.
* \see create_thread().
*
- * \todo COW handling.
- *
* @param p Parent process.
* @return Pointer to created \ref tcb.
*/