-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 5.0u5
-
Component/s: tools
-
b65
-
generic
-
solaris
Two lines in this file state:
return (jlong)(gethrvtime()/1000); /* Nano seconds to milli seconds */
This nanos-to-millis conversion (dividing by 1000) seems incorrect
given that:
Nano = 10^-9
Milli = 10^-3
return (jlong)(gethrvtime()/1000); /* Nano seconds to milli seconds */
This nanos-to-millis conversion (dividing by 1000) seems incorrect
given that:
Nano = 10^-9
Milli = 10^-3