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/Plugins/Process | |
| parent | 287e7d275c6022c95d9742e1dcca380b636d92e0 (diff) | |
| download | bcm5719-llvm-f85defaea502a47e59826cf335d84a286243c77c.tar.gz bcm5719-llvm-f85defaea502a47e59826cf335d84a286243c77c.zip | |
Adding eStopReasonThreadExiting and fixing the handling of this state on Linux.
llvm-svn: 170800
Diffstat (limited to 'lldb/source/Plugins/Process')
| -rw-r--r-- | lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp b/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp index 79f0a58115b..3dd3c869884 100644 --- a/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp +++ b/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp @@ -21,7 +21,7 @@ POSIXLimboStopInfo::~POSIXLimboStopInfo() { } lldb::StopReason POSIXLimboStopInfo::GetStopReason() const { - return lldb::eStopReasonTrace; + return lldb::eStopReasonThreadExiting; } const char * @@ -33,13 +33,13 @@ POSIXLimboStopInfo::GetDescription() bool POSIXLimboStopInfo::ShouldStop(Event *event_ptr) { - return true; + return false; } bool POSIXLimboStopInfo::ShouldNotify(Event *event_ptr) { - return true; + return false; } //===----------------------------------------------------------------------===// |

