summaryrefslogtreecommitdiff
path: root/runtime/debugger.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-01-19 09:02:50 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2017-01-19 09:02:50 +0000
commitbf6331a45f730e1f1044af2ce43bceda660ae6fc (patch)
tree66013474dc85b2a868d5fad2506c8674a086fa1a /runtime/debugger.cc
parent13093d455b8266338fd713b04261c58e9dc2b164 (diff)
Revert "ART: Start RuntimeCallbacks"
jdwp tests failing with: STDERR> dalvikvm32 E 01-18 23:14:50 12180 12198 thread-inl.h:137] holding "runtime callbacks lock" at point where thread suspension is expected Bug: 31684920 This reverts commit 13093d455b8266338fd713b04261c58e9dc2b164. Change-Id: I94e4154e273d006eecdd485607dcfd96392d6a00
Diffstat (limited to 'runtime/debugger.cc')
-rw-r--r--runtime/debugger.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc
index c97c4e4f5b..df4413d52c 100644
--- a/runtime/debugger.cc
+++ b/runtime/debugger.cc
@@ -320,8 +320,6 @@ size_t Dbg::field_write_event_ref_count_ = 0;
size_t Dbg::exception_catch_event_ref_count_ = 0;
uint32_t Dbg::instrumentation_events_ = 0;
-Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_;
-
// Breakpoints.
static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
@@ -5139,12 +5137,4 @@ void Dbg::VisitRoots(RootVisitor* visitor) {
}
}
-void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) {
- Dbg::PostThreadStart(self);
-}
-
-void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) {
- Dbg::PostThreadDeath(self);
-}
-
} // namespace art