summaryrefslogtreecommitdiff
path: root/runtime/thread.h
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/thread.h
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/thread.h')
-rw-r--r--runtime/thread.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/runtime/thread.h b/runtime/thread.h
index 166ed217d0..2b451bcaee 100644
--- a/runtime/thread.h
+++ b/runtime/thread.h
@@ -1704,14 +1704,6 @@ class ScopedTransitioningToRunnable : public ValueObject {
Thread* const self_;
};
-class ThreadLifecycleCallback {
- public:
- virtual ~ThreadLifecycleCallback() {}
-
- virtual void ThreadStart(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_) = 0;
- virtual void ThreadDeath(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_) = 0;
-};
-
std::ostream& operator<<(std::ostream& os, const Thread& thread);
std::ostream& operator<<(std::ostream& os, const StackedShadowFrameType& thread);