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

/illumos-gate/usr/src/cmd/lms/SyncLib/src/
H A DThreadUnix.cpp96 bool Thread::wait(unsigned long msecs_p) const
100 if (msecs_p != WAIT_INFINITE) {
105 time.tv_sec = msecs_p / 1000;
106 time.tv_nsec = (msecs_p % 1000) * 1000000;
156 void Thread::msleep(long msecs_p) argument
161 time.tv_sec = msecs_p / 1000;
162 time.tv_nsec = (msecs_p % 1000) * 1000000;
H A DEventUnix.cpp113 bool Event::wait(unsigned long msecs_p) argument
117 if (msecs_p != WAIT_INFINITE) {
122 time.tv_sec = msecs_p / 1000;
123 time.tv_nsec = (msecs_p % 1000) * 1000000;
129 // this, &_osEvent->_ose->_cond, _osEvent->_ose->_set, msecs_p);

Completed in 53 milliseconds