<rdar://problem/13697881>

Fixed the GDB remote with the python OS plug-in to not show core threads when they aren't desired and also to have the threads "to the right thing" when continuing.

llvm-svn: 179912
This commit is contained in:
Greg Clayton
2013-04-20 00:27:58 +00:00
parent 71dba2ce89
commit d1d06e4744
5 changed files with 104 additions and 55 deletions

View File

@@ -57,10 +57,10 @@ bool
ThreadMemory::WillResume (StateType resume_state)
{
ClearStackFrames();
// Call the Thread::WillResume first. If we stop at a signal, the stop info
// class for signal will set the resume signal that we need below. The signal
// stuff obeys the Process::UnixSignal defaults.
Thread::WillResume(resume_state);
if (m_backing_thread_sp)
return m_backing_thread_sp->WillResume(resume_state);
return true;
}