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

/bind-9.11.3/lib/isc/pthreads/
H A Dcondition.c26 int presult; local
55 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
57 presult = pthread_cond_timedwait(c, m, &ts);
59 if (presult == 0)
61 if (presult == ETIMEDOUT)
63 } while (presult == EINTR);
65 isc__strerror(presult, strbuf, sizeof(strbuf));
/bind-9.11.3/lib/isc/unix/
H A Dapp.c208 int presult; local
222 presult = pthread_init();
223 if (presult != 0) {
224 isc__strerror(presult, strbuf, sizeof(strbuf));
326 presult = pthread_sigmask(SIG_BLOCK, &sset, NULL);
327 if (presult != 0) {
328 isc__strerror(presult, strbuf, sizeof(strbuf));
353 presult = sigprocmask(SIG_UNBLOCK, &sset, NULL);
354 if (presult != 0) {
/bind-9.11.3/contrib/dlz/modules/wildcard/
H A Ddlz_wildcard_dynamic.c334 isc_result_t presult; local
342 presult = cd->putrr(lookup, nrec->type,
344 if (presult != ISC_R_SUCCESS) {
345 result = presult;

Completed in 1727 milliseconds