00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <config.h>
00023
00024 #include <errno.h>
00025
00026 #include <isc/condition.h>
00027 #include <isc/msgs.h>
00028 #include <isc/strerror.h>
00029 #include <isc/string.h>
00030 #include <isc/time.h>
00031 #include <isc/util.h>
00032
00033 isc_result_t
00034 isc_condition_waituntil(isc_condition_t *c, isc_mutex_t *m, isc_time_t *t) {
00035 int presult;
00036 isc_result_t result;
00037 struct timespec ts;
00038 char strbuf[ISC_STRERRORSIZE];
00039
00040 REQUIRE(c != NULL && m != NULL && t != NULL);
00041
00042
00043
00044
00045 result = isc_time_secondsastimet(t, &ts.tv_sec);
00046
00047
00048
00049
00050
00051 if (result == ISC_R_RANGE)
00052 ts.tv_sec = INT_MAX;
00053 else if (result != ISC_R_SUCCESS)
00054 return (result);
00055
00056
00057
00058
00059
00060 ts.tv_nsec = (long)isc_time_nanoseconds(t);
00061
00062 do {
00063 #if ISC_MUTEX_PROFILE
00064 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
00065 #else
00066 presult = pthread_cond_timedwait(c, m, &ts);
00067 #endif
00068 if (presult == 0)
00069 return (ISC_R_SUCCESS);
00070 if (presult == ETIMEDOUT)
00071 return (ISC_R_TIMEDOUT);
00072 } while (presult == EINTR);
00073
00074 isc__strerror(presult, strbuf, sizeof(strbuf));
00075 UNEXPECTED_ERROR(__FILE__, __LINE__,
00076 "pthread_cond_timedwait() %s %s",
00077 isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
00078 ISC_MSG_RETURNED, "returned"),
00079 strbuf);
00080 return (ISC_R_UNEXPECTED);
00081 }