commit | 462c94449720e0dc6b93d7138d835d345ccf67ae | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Mar 23 18:47:50 2012 -0700 |
committer | Elliott Hughes <enh@google.com> | Mon Mar 26 08:42:04 2012 -0700 |
tree | e719ceab0e64e0cc2ca4acb6ee715623ab458215 | |
parent | 81ff3184e7eb8de4605c7646674ea4f9fa29b5f3 [diff] [blame] |
Fix AttachCurrentThread to use the right thread group. Change-Id: I9818845c005563d894a571edc4f9be9862312380
diff --git a/src/jdwp/jdwp_main.cc b/src/jdwp/jdwp_main.cc index f31eb0b..8fa650a 100644 --- a/src/jdwp/jdwp_main.cc +++ b/src/jdwp/jdwp_main.cc
@@ -269,7 +269,7 @@ void JdwpState::Run() { Runtime* runtime = Runtime::Current(); - runtime->AttachCurrentThread("JDWP", true); + runtime->AttachCurrentThread("JDWP", true, Thread::GetSystemThreadGroup()); VLOG(jdwp) << "JDWP: thread running";