mirror of https://gitlab.com/nakst/essence
fix warning
This commit is contained in:
parent
a9cbcb685b
commit
d579ef1bae
|
@ -5363,6 +5363,7 @@ int ExternalSystemGetHostName(ExecutionContext *context, Value *returnValue) {
|
||||||
}
|
}
|
||||||
|
|
||||||
CoroutineState *ExternalCoroutineWaitAny(ExecutionContext *context) {
|
CoroutineState *ExternalCoroutineWaitAny(ExecutionContext *context) {
|
||||||
|
(void) context;
|
||||||
while (sem_wait(&externalCoroutineSemaphore) == -1);
|
while (sem_wait(&externalCoroutineSemaphore) == -1);
|
||||||
pthread_mutex_lock(&externalCoroutineMutex);
|
pthread_mutex_lock(&externalCoroutineMutex);
|
||||||
CoroutineState *unblocked = externalCoroutineUnblockedList;
|
CoroutineState *unblocked = externalCoroutineUnblockedList;
|
||||||
|
|
Loading…
Reference in New Issue