Searched defs:_abstime (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp4949 int os::Bsd::safe_cond_timedwait(pthread_cond_t *_cond, pthread_mutex_t *_mutex, const struct timespec *_abstime) argument
4952 return pthread_cond_timedwait(_cond, _mutex, _abstime);
4955 return pthread_cond_timedwait(_cond, _mutex, _abstime);
4963 int status = pthread_cond_timedwait(_cond, _mutex, _abstime);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4740 int os::Linux::safe_cond_timedwait(pthread_cond_t *_cond, pthread_mutex_t *_mutex, const struct timespec *_abstime) argument
4743 return pthread_cond_timedwait(_cond, _mutex, _abstime);
4751 int status = pthread_cond_timedwait(_cond, _mutex, _abstime);

Completed in 51 milliseconds