summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-05-01 01:03:09 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-05-01 01:03:09 +0000
commite2c689ab581762cab6fdb70951b50458a30be1ee (patch)
tree120a6fad0d71a203653a586a7e1653087e7f097f
parentdb4ebcbc52f84708248cd4b773c4fc3063a615ef (diff)
parent37f79a6eb5d4f378ff6b0b56e21d5d5d1f4cc9a2 (diff)
downloadlibcore-e2c689ab581762cab6fdb70951b50458a30be1ee.zip
libcore-e2c689ab581762cab6fdb70951b50458a30be1ee.tar.gz
libcore-e2c689ab581762cab6fdb70951b50458a30be1ee.tar.bz2
Merge "Improve System.nanoTime documentation."
-rw-r--r--luni/src/main/java/java/lang/System.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/main/java/java/lang/System.java b/luni/src/main/java/java/lang/System.java
index 98ce6cb..7205ad5 100644
--- a/luni/src/main/java/java/lang/System.java
+++ b/luni/src/main/java/java/lang/System.java
@@ -168,7 +168,7 @@ public final class System {
/**
* Returns the current timestamp of the most precise timer available on the
- * local system.
+ * local system, in nanoseconds. Equivalent to Linux's {@code CLOCK_MONOTONIC}.
*
* <p>This timestamp should only be used to measure a duration by comparing it
* against another timestamp from the same process on the same device.