commit e5d4466e176adf5273a24d660c10d5b36aad4893
parent 1cf8b80e781dd4cbb9e70383c209b0053a3ced6f
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date: Thu, 17 Nov 2022 17:10:49 +0100
os9: Don't modify proc until is needed
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/os9/proc.c b/src/os9/proc.c
@@ -552,7 +552,7 @@ repeat:
&& (tp->affinity & mask) != 0
&& tp->prio >= prio
&& (tp->prio != prio || tp->wait > wait)) {
- new = proc = tp;
+ new = tp;
prio = tp->prio;
wait = tp->wait;
}