diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-02-03 01:50:56 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-02-03 01:50:56 +0000 |
commit | c0e5ac84b0afad7181b21e2328c7cb973bceffe9 (patch) | |
tree | 55d982cc57e11033eac7d37eafff22778d881754 /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | |
parent | 9d617ba613ea3cbeeac52dd976e7ccf5fff4b752 (diff) | |
download | bcm5719-llvm-c0e5ac84b0afad7181b21e2328c7cb973bceffe9.tar.gz bcm5719-llvm-c0e5ac84b0afad7181b21e2328c7cb973bceffe9.zip |
Fix step commands that mix running threads and stepping threads.
This fixes https://github.com/tfiala/lldb/issues/62.
llvm-svn: 227915
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index d6270ecbfc0..436f4e23c16 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -2741,11 +2741,6 @@ NativeProcessLinux::Resume (const ResumeActionList &resume_actions) } } - // If we resumed anything, this command was about starting a stopped thread, - // not about stopping something that we should trigger later. - if (resume_count > 0) - return error; - // If we had any thread stopping, then do a deferred notification of the chosen stop thread id and signal // after all other running threads have stopped. if (deferred_signal_tid != LLDB_INVALID_THREAD_ID) |