Searched refs:presult (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/pthreads/
H A Dcondition.c35 int presult; local
64 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
66 presult = pthread_cond_timedwait(c, m, &ts);
68 if (presult == 0)
70 if (presult == ETIMEDOUT)
72 } while (presult == EINTR);
74 isc__strerror(presult, strbuf, sizeof(strbuf));
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dapp.c129 int presult; local
141 presult = pthread_init();
142 if (presult != 0) {
143 isc__strerror(presult, strbuf, sizeof(strbuf));
222 presult = pthread_sigmask(SIG_BLOCK, &sset, NULL);
223 if (presult != 0) {
224 isc__strerror(presult, strbuf, sizeof(strbuf));
247 presult = sigprocmask(SIG_UNBLOCK, &sset, NULL);
248 if (presult != 0) {
249 isc__strerror(presult, strbu
[all...]

Completed in 14 milliseconds