diff options
author | 2017-01-16 16:07:49 +0000 | |
---|---|---|
committer | 2017-01-16 16:07:49 +0000 | |
commit | 4ca818c31cc38746332e68a89ca48be88aa9d7b6 (patch) | |
tree | 6ca240e6dcd08a11ed9c35bdbae220939f1bcae2 /runtime/openjdkjvmti/OpenjdkJvmTi.cc | |
parent | 5e01df491f371cdafd5c348511c373b527329a01 (diff) | |
parent | 8580744607a963d408956c3eb712b0e070c139b0 (diff) |
Merge "ART: Add GetAllThreads"
Diffstat (limited to 'runtime/openjdkjvmti/OpenjdkJvmTi.cc')
-rw-r--r-- | runtime/openjdkjvmti/OpenjdkJvmTi.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/openjdkjvmti/OpenjdkJvmTi.cc b/runtime/openjdkjvmti/OpenjdkJvmTi.cc index 09fcc1c7e2..8674e6cae7 100644 --- a/runtime/openjdkjvmti/OpenjdkJvmTi.cc +++ b/runtime/openjdkjvmti/OpenjdkJvmTi.cc @@ -126,7 +126,7 @@ class JvmtiFunctions { } static jvmtiError GetAllThreads(jvmtiEnv* env, jint* threads_count_ptr, jthread** threads_ptr) { - return ERR(NOT_IMPLEMENTED); + return ThreadUtil::GetAllThreads(env, threads_count_ptr, threads_ptr); } static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread) { |