feat: remove yielding after unlocking mutex

This commit is contained in:
Alessandre Laguierce 2025-04-09 17:41:18 +02:00
parent 37ad7548dc
commit 964a810fad

View File

@ -451,7 +451,6 @@ int thread_mutex_unlock(thread_mutex_t* mutex)
mutex->dummy = 0;
UNSET_STATUS(running, MUTEX_LOCKING);
thread_yield();
return 0;
}