Searched defs:wait (Results 1 - 6 of 6) sorted by relevance

/bind-9.11.3/unit/atf-src/atf-c++/
H A Dutils.cpp96 atf::utils::wait(const pid_t pid, const int exitstatus, function in class:atf::utils
/bind-9.11.3/lib/isc/win32/
H A Dcondition.c41 * for the wait condition
190 * we are waiting we need to release it and reacquire it as soon as the wait
194 * result of the wait. Note that EnterCriticalSection will wait to acquire
198 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) { function
204 * Get the thread events needed for the wait
228 return (wait(cond, mutex, INFINITE));
249 return (wait(cond, mutex, milliseconds));
/bind-9.11.3/bin/pkcs11/
H A Dpkcs11-destroy.c45 * [-p $pin] [ -w $wait ]
88 unsigned int id = 0, i = 0, wait = 5; local
115 wait = atoi(isc_commandline_argument);
233 if (wait != 0) {
235 "Destroying key objects in %d seconds\n ", wait);
236 for (i = 0; i < wait; i++) {
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dprocess.cpp302 impl::child::wait(void) function in class:impl::child
/bind-9.11.3/unit/atf-src/tools/
H A Dprocess.cpp32 #include <sys/wait.h>
428 (void)wait();
438 impl::child::wait(void) function in class:impl::child
443 throw system_error(IMPL_NAME "::child::wait", "Failed waiting for "
/bind-9.11.3/contrib/queryperf/
H A Dqueryperf.c1715 data_available(double wait) { argument
1734 if ((wait > 0.0) && (wait < (double)LONG_MAX)) {
1735 tv.tv_sec = (long)floor(wait);
1736 tv.tv_usec = (long)(1000000.0 * (wait - floor(wait)));
1764 double wait; local
1783 wait = difftv(waituntil, now);
1784 if (wait <= 0)
1785 wait
[all...]

Completed in 19 milliseconds