diff options
Diffstat (limited to 'src/threads/cnd_wait.c')
| -rw-r--r-- | src/threads/cnd_wait.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/threads/cnd_wait.c b/src/threads/cnd_wait.c index 213b94ac..577ffa5f 100644 --- a/src/threads/cnd_wait.c +++ b/src/threads/cnd_wait.c @@ -5,6 +5,7 @@ int cnd_wait(cnd_t *cond, mtx_t *mtx) { + SIGNAL_SAFE(0); return pthread_cond_wait(cond, mtx) == 0 ? thrd_success : thrd_error; } |
