< prev index next >

src/java.base/macosx/native/libjli/java_md_macosx.m

Print this page
rev 56236 : 8241638: launcher time metrics always report 1 on Linux when _JAVA_LAUNCHER_DEBUG set
Reviewed-by: alanb, dholmes
Contributed-by: linzang@tencent.com

@@ -639,11 +639,11 @@
 int64_t
 CounterGet()
 {
     struct timeval tv;
     gettimeofday(&tv, NULL);
-    return (tv.tv_sec * 1000) + tv.tv_usec;
+    return (tv.tv_sec * 1000000) + tv.tv_usec;
 }
 
 
 /* --- Splash Screen shared library support --- */
 
< prev index next >