diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-12-20 23:08:03 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-12-20 23:08:03 +0000 |
commit | f85defaea502a47e59826cf335d84a286243c77c (patch) | |
tree | 61719f6d7986d52203bf591d60b838a0f2b6450a /lldb/source/Target/ThreadPlanBase.cpp | |
parent | 287e7d275c6022c95d9742e1dcca380b636d92e0 (diff) | |
download | llvm-f85defaea502a47e59826cf335d84a286243c77c.zip llvm-f85defaea502a47e59826cf335d84a286243c77c.tar.gz llvm-f85defaea502a47e59826cf335d84a286243c77c.tar.bz2 |
Adding eStopReasonThreadExiting and fixing the handling of this state on Linux.
llvm-svn: 170800
Diffstat (limited to 'lldb/source/Target/ThreadPlanBase.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanBase.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanBase.cpp b/lldb/source/Target/ThreadPlanBase.cpp index ebf4686..4440837 100644 --- a/lldb/source/Target/ThreadPlanBase.cpp +++ b/lldb/source/Target/ThreadPlanBase.cpp @@ -146,7 +146,8 @@ ThreadPlanBase::ShouldStop (Event *event_ptr) log->Printf("Base plan discarding thread plans for thread tid = 0x%4.4" PRIx64 " (exec.)", m_thread.GetID()); m_thread.DiscardThreadPlans(false); return true; - + + case eStopReasonThreadExiting: case eStopReasonSignal: if (stop_info_sp->ShouldStop(event_ptr)) { |