X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fthread%2Fpthread_cond_timedwait.c;fp=src%2Fthread%2Fpthread_cond_timedwait.c;h=7a19fc5581f1ac0d72bf75409b71f4c060486aff;hb=a113434cd68ce30642c4995b1caadcd084be6f09;hp=1439aace15de557cb9c22e35a045c5353b857b15;hpb=cd3bb38412cfcc3bc47985ba25287e0af463609a;p=musl diff --git a/src/thread/pthread_cond_timedwait.c b/src/thread/pthread_cond_timedwait.c index 1439aace..7a19fc55 100644 --- a/src/thread/pthread_cond_timedwait.c +++ b/src/thread/pthread_cond_timedwait.c @@ -16,7 +16,8 @@ int pthread_cond_timedwait(pthread_cond_t *c, pthread_mutex_t *m, const struct t if ((r=pthread_mutex_unlock(m))) return r; CANCELPT_BEGIN; - e = __timedwait(&c->_c_block, 1, c->_c_clock, ts, 0); + do e = __timedwait(&c->_c_block, 1, c->_c_clock, ts, 0); + while (e == EINTR); CANCELPT_END; pthread_cleanup_pop(0);