hotspot/src/os/posix/vm/os_posix.cpp
changeset 42066 46f6db750b17
parent 41070 496463b4e206
child 42905 1af223983f82
--- 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];