Searched defs:abstime (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5539 // than the minimum period may have passed, and the abstime may be stale (in the
5556 // 4. When the abstime value is in the past it appears that control returns
5578 // utility to compute the abstime argument to timedwait:
5580 // abstime will be the absolute timeout time
5583 static struct timespec* compute_abstime(struct timespec* abstime, jlong millis) { argument
5593 abstime->tv_sec = now.tv_sec + seconds;
5596 abstime->tv_sec += 1;
5599 abstime->tv_nsec = usec * 1000;
5600 return abstime;
5783 * number of seconds, in abstime, i
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5278 // than the minimum period may have passed, and the abstime may be stale (in the
5295 // 4. When the abstime value is in the past it appears that control returns
5317 // utility to compute the abstime argument to timedwait:
5319 // abstime will be the absolute timeout time
5322 static struct timespec* compute_abstime(timespec* abstime, jlong millis) { argument
5332 abstime->tv_sec = now.tv_sec + seconds;
5335 abstime->tv_sec += 1;
5338 abstime->tv_nsec = usec * 1000;
5339 return abstime;
5522 * number of seconds, in abstime, i
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp6239 // utility to compute the abstime argument to timedwait.
6242 static timestruc_t* compute_abstime(timestruc_t* abstime, jlong millis) { argument
6244 // abstime will be the absolute timeout time
6274 abstime->tv_sec = now.tv_sec + seconds;
6277 abstime->tv_sec += 1;
6280 abstime->tv_nsec = usec * 1000;
6281 return abstime;
6439 * number of seconds, in abstime, is less than current_time + 100,000,000.

Completed in 414 milliseconds