diff -r 6032b31e3719 -r 46f6db750b17 hotspot/src/os/posix/vm/os_posix.cpp --- a/hotspot/src/os/posix/vm/os_posix.cpp Thu Oct 13 14:49:34 2016 +0200 +++ b/hotspot/src/os/posix/vm/os_posix.cpp Fri Oct 21 10:18:11 2016 +0200 @@ -188,6 +188,10 @@ return NOT_AIX(::)fileno(fp); } +struct tm* os::gmtime_pd(const time_t* clock, struct tm* res) { + return gmtime_r(clock, res); +} + void os::Posix::print_load_average(outputStream* st) { st->print("load average:"); double loadavg[3];