aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2020-05-20 13:29:04 +0200
committerRaphael Isemann <teemperor@gmail.com>2020-05-20 13:29:04 +0200
commit587f81f54a3abab88fe9be5f113c74fc12655ee0 (patch)
tree6590bd7c966aedd2d6691f055e059e9b166b46a6 /lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
parent02035580d3b5a4dad081704a70ceb269e9264619 (diff)
downloadllvm-587f81f54a3abab88fe9be5f113c74fc12655ee0.zip
llvm-587f81f54a3abab88fe9be5f113c74fc12655ee0.tar.gz
llvm-587f81f54a3abab88fe9be5f113c74fc12655ee0.tar.bz2
Revert "[lldb-server] Reset stop reason of all threads when resuming"
This reverts commit 56de738d18e11c86169f0248b97b2854c37e35ce. This broke the aarch64 bot. Reverting on behalf of jarin.
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp')
-rw-r--r--lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
index 08992f9..14eea2d 100644
--- a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
+++ b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
@@ -396,10 +396,7 @@ void NativeThreadLinux::SetStoppedByTrace() {
void NativeThreadLinux::SetStoppedWithNoReason() {
SetStopped();
- ResetStopReason();
-}
-void NativeThreadLinux::ResetStopReason() {
m_stop_info.reason = StopReason::eStopReasonNone;
m_stop_info.details.signal.signo = 0;
}