hotspot/src/os/windows/vm/os_windows.cpp
changeset 234 4da9c1bbc810
parent 1 489c9b5090e2
child 235 735f15bdea80
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Fri Mar 14 10:43:02 2008 -0400
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Wed Mar 19 09:58:01 2008 -0400
@@ -732,20 +732,13 @@
   return result;
 }
 
-jlong os::timeofday() {
-  FILETIME wt;
-  GetSystemTimeAsFileTime(&wt);
-  return windows_to_java_time(wt);
-}
-
-
-// Must return millis since Jan 1 1970 for JVM_CurrentTimeMillis
-// _use_global_time is only set if CacheTimeMillis is true
 jlong os::javaTimeMillis() {
   if (UseFakeTimers) {
     return fake_time++;
   } else {
-    return (_use_global_time ? read_global_time() : timeofday());
+    FILETIME wt;
+    GetSystemTimeAsFileTime(&wt);
+    return windows_to_java_time(wt);
   }
 }