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

/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp253 static int cond_timedwait(cond_t *cv, mutex_t *mx, timestruc_t *abst) argument
254 { return _cond_timedwait(cv, mx, abst); }
H A Dos_solaris.cpp6345 timestruc_t abst; local
6346 compute_abstime (&abst, millis);
6359 int status = os::Solaris::cond_timedwait(_cond, _mutex, &abst);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5663 struct timespec abst; local
5664 compute_abstime(&abst, millis);
5688 status = os::Bsd::safe_cond_timedwait(_cond, _mutex, &abst);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5402 struct timespec abst; local
5403 compute_abstime(&abst, millis);
5427 status = os::Linux::safe_cond_timedwait(_cond, _mutex, &abst);

Completed in 3085 milliseconds