Searched defs:timedwait (Results 1 - 4 of 4) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/concurrent/
H A DCondVar.java114 * notFull.timedwait(msecs);
134 * notEmpty.timedwait(msecs);
281 public boolean timedwait(long msecs) throws InterruptedException { method in class:CondVar
291 ORBUtility.dprintTrace( this, "timedwait enter" ) ;
323 ORBUtility.dprintTrace( this, "timedwait exit" ) ;
331 * normally (i.e., not via InterruptedException) from await or timedwait.
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2690 bool timedwait(unsigned int sec, int nsec);
2720 return timedwait(0, 0);
2723 bool Semaphore::timedwait(unsigned int sec, int nsec) { function in class:Semaphore
2759 bool Semaphore::timedwait(unsigned int sec, int nsec) { function in class:Semaphore
4034 if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
4068 if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
5558 // Subsequent timedwait/wait calls may hang indefinitely. Given that, we
5571 // release the helper structure. Our reinitialize-after-timedwait fix
5578 // utility to compute the abstime argument to timedwait:
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp2448 bool timedwait(unsigned int sec, int nsec);
2474 bool Semaphore::timedwait(unsigned int sec, int nsec) { function in class:Semaphore
3880 if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
3914 if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
5297 // Subsequent timedwait/wait calls may hang indefinitely. Given that, we
5310 // release the helper structure. Our reinitialize-after-timedwait fix
5317 // utility to compute the abstime argument to timedwait:
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp2616 bool timedwait(unsigned int sec, int nsec);
2642 bool Semaphore::timedwait(unsigned int sec, int nsec) { function in class:Semaphore
4492 if (sr_semaphore.timedwait(0, 2000 * NANOSECS_PER_MILLISEC)) {
4526 if (sr_semaphore.timedwait(0, 2 * NANOSECS_PER_MILLISEC)) {
6239 // utility to compute the abstime argument to timedwait.

Completed in 303 milliseconds