commit f1a52419135c436766fe0cb82182374345f1f7c7 parent 70a9af5006aabb7af04f9d68c40b978331b42dba Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com> Date: Thu, 17 Nov 2022 07:52:06 +0100 os9: Duplicate task fields in clone() Diffstat:
M | src/os9/proc.c | | | 20 | ++++++++++++++++++++ |
1 file changed, 20 insertions(+), 0 deletions(-)
diff --git a/src/os9/proc.c b/src/os9/proc.c @@ -351,6 +351,26 @@ clone(Task *parent) tp->ppid = parent->pid; + tp->entry = parent->entry; + + tp->prio = parent->prio; + tp->baseprio = parent->baseprio; + tp->retainprio = parent->retainprio; + + tp->wait = parent->wait; + tp->locklevel = parent->locklevel; + tp->affinity = parent->affinity; + + tp->period = parent->period; + tp->duration = parent->duration; + tp->capacity = parent->capacity; + + tp->deadline = parent->deadline; + tp->deadtime = parent->deadtime; + + tp->flags = parent->flags; + tp->state = TREADY; + tp->text = parent->text; if (tp->text) incref(&parent->text->ref);