commit 1cf8b80e781dd4cbb9e70383c209b0053a3ced6f
parent c04d15ae02c728de5118dbe529e70968bce44fd5
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date: Thu, 17 Nov 2022 17:09:04 +0100
os9: Unlock task in kproc()
It does not make sense to keep the task locked when
this interface is designed to be used easily.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/os9/proc.c b/src/os9/proc.c
@@ -44,7 +44,6 @@ iproc(void)
if ((tp = kproc(initfn)) == NULL)
panic("init task failed");
proc = tp;
- unlock(&proc->m);
}
void
@@ -518,6 +517,7 @@ kproc(void *fn)
tp->state = TREADY;
ictx(tp, fn);
+ unlock(&tp->m);
return tp;
}