diff options
author | 2019-03-12 14:25:32 +0000 | |
---|---|---|
committer | 2019-03-12 14:25:54 +0000 | |
commit | a55e8b5c9827cc4dc4e7f7c7ee07ef1fdafc35e0 (patch) | |
tree | 48120329529bfa5e3e20c1726a513488f97c354e /openjdkjvmti/ti_extension.cc | |
parent | 403aafa9f286e13ee2a64748514d33af39b55ab0 (diff) |
Revert "Revert^2 "Add extension and agent for dumping internal jvmti plugin data.""
This reverts commit 2d8b8119228bbe4202490b1d5fed6191989d5d83.
Reason for revert: Fails jdwp tests.
Change-Id: I0577fd82df161183ccd73eaf61cbe6bf871ef410
Diffstat (limited to 'openjdkjvmti/ti_extension.cc')
-rw-r--r-- | openjdkjvmti/ti_extension.cc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/openjdkjvmti/ti_extension.cc b/openjdkjvmti/ti_extension.cc index f12cb0a380..5d398844b2 100644 --- a/openjdkjvmti/ti_extension.cc +++ b/openjdkjvmti/ti_extension.cc @@ -38,7 +38,6 @@ #include "ti_allocator.h" #include "ti_class.h" #include "ti_ddms.h" -#include "ti_dump.h" #include "ti_heap.h" #include "ti_logging.h" #include "ti_monitor.h" @@ -313,20 +312,6 @@ jvmtiError ExtensionUtil::GetExtensionFunctions(jvmtiEnv* env, return error; } - // DumpInternalState - error = add_extension( - reinterpret_cast<jvmtiExtensionFunction>(DumpUtil::DumpInternalState), - "com.android.art.misc.get_plugin_internal_state", - "Gets internal state about the plugin and serializes it to the given msg. " - "There is no particular format to this message beyond being human readable.", - { - { "msg", JVMTI_KIND_ALLOC_BUF, JVMTI_TYPE_CCHAR, false }, - }, - { ERR(NULL_POINTER) }); - if (error != ERR(NONE)) { - return error; - } - // Copy into output buffer. *extension_count_ptr = ext_vector.size(); |