diff --git a/util/script.c b/util/script.c index 2554f5b..f4319ef 100644 --- a/util/script.c +++ b/util/script.c @@ -4596,11 +4596,11 @@ int ExternalCharacterToByte(ExecutionContext *context, Value *returnValue) { void ExternalCoroutineDone(CoroutineState *coroutine) { #ifdef __linux__ - sem_post(&externalCoroutineSemaphore); pthread_mutex_lock(&externalCoroutineMutex); coroutine->nextExternalCoroutine = externalCoroutineUnblockedList; externalCoroutineUnblockedList = coroutine; pthread_mutex_unlock(&externalCoroutineMutex); + sem_post(&externalCoroutineSemaphore); #else (void) coroutine; #endif