diff options
author | 2019-03-09 17:51:26 +0000 | |
---|---|---|
committer | 2019-03-09 19:05:23 +0000 | |
commit | 9da91d2ee78a32e4bfa5f402f23835652b87023e (patch) | |
tree | 1af6a2653110ea818da6da7c7730d67ce2410888 /openjdkjvmti/ti_extension.cc | |
parent | 35e6caa39e407af25a8ecbadc4994a4f17c639dc (diff) |
Revert "Add extension and agent for dumping internal jvmti plugin data."
This reverts commit 60ee778ea7cff778f95fafe63138f336def9fb18.
Reason for revert: 1924-frame-pop-toggle fails on some configs.
Change-Id: Ib8386f62d0eb43da7236e07b4b171914a523dce5
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(); |