summaryrefslogtreecommitdiff
path: root/vm/reference/java/lang/VMThread.java
diff options
context:
space:
mode:
Diffstat (limited to 'vm/reference/java/lang/VMThread.java')
-rw-r--r--vm/reference/java/lang/VMThread.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/vm/reference/java/lang/VMThread.java b/vm/reference/java/lang/VMThread.java
index 302de6c35..ff0ec6878 100644
--- a/vm/reference/java/lang/VMThread.java
+++ b/vm/reference/java/lang/VMThread.java
@@ -446,4 +446,16 @@ final class VMThread
return false;
}
}
+
+ /**
+ * Returns the current state of the thread.
+ * The value must be one of "BLOCKED", "NEW",
+ * "RUNNABLE", "TERMINATED", "TIMED_WAITING" or
+ * "WAITING".
+ *
+ * @return a string corresponding to one of the
+ * thread enumeration states specified above.
+ */
+ native String getState();
+
}