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

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1589 #ifndef CLOCK_MONOTONIC
1590 #define CLOCK_MONOTONIC (1) macro
1601 if (::clock_getres(CLOCK_MONOTONIC, &res) == 0 &&
1602 ::clock_gettime(CLOCK_MONOTONIC, &tp) == 0) {
1632 if (clock_getres_func (CLOCK_MONOTONIC, &res) == 0 &&
1633 clock_gettime_func(CLOCK_MONOTONIC, &tp) == 0) {
1691 int status = Bsd::clock_gettime(CLOCK_MONOTONIC, &tp);
1708 // CLOCK_MONOTONIC - amount of time since some arbitrary point in the past
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1398 #ifndef CLOCK_MONOTONIC
1399 #define CLOCK_MONOTONIC (1) macro
1426 if (clock_getres_func (CLOCK_MONOTONIC, &res) == 0 &&
1427 clock_gettime_func(CLOCK_MONOTONIC, &tp) == 0) {
1482 int status = Linux::clock_gettime(CLOCK_MONOTONIC, &tp);
1499 // CLOCK_MONOTONIC - amount of time since some arbitrary point in the past

Completed in 63 milliseconds