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

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.hpp58 static int (*_clock_gettime)(clockid_t, struct timespec *); member in class:Bsd
206 return _clock_gettime != NULL;
210 return _clock_gettime ? _clock_gettime(clock_id, tp) : -1;
H A Dos_bsd.cpp159 int (*os::Bsd::_clock_gettime)(clockid_t, struct timespec *) = NULL; variable
1604 _clock_gettime = ::clock_gettime;
1635 _clock_gettime = clock_gettime_func;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.hpp52 static int (*_clock_gettime)(clockid_t, struct timespec *); member in class:Linux
193 return _clock_gettime != NULL;
197 return _clock_gettime ? _clock_gettime(clock_id, tp) : -1;
H A Dos_linux.cpp136 int (*os::Linux::_clock_gettime)(clockid_t, struct timespec *) = NULL; variable
1429 _clock_gettime = clock_gettime_func;

Completed in 68 milliseconds