diff options
author | Jim Ingham <jingham@apple.com> | 2014-02-24 19:49:46 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-02-24 19:49:46 +0000 |
commit | 40083a432600dac7f87ca3880c012c1fd520a92e (patch) | |
tree | 0e3d9b8ab1c11d708afa8883c7513057c5fb1353 | |
parent | ca49851833c8497ea92be5695a63bb05cd5e5baf (diff) | |
download | bcm5719-llvm-40083a432600dac7f87ca3880c012c1fd520a92e.tar.gz bcm5719-llvm-40083a432600dac7f87ca3880c012c1fd520a92e.zip |
Don’t process the stop reply packet as a generic signal if we already figured out what it was from other data in the packet.
llvm-svn: 202066
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 1a73f6a30df..1172222d62a 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1735,7 +1735,7 @@ ProcessGDBRemote::SetThreadStopInfo (StringExtractor& stop_packet) } } - if (signo && did_exec == false) + if (!handled && signo && did_exec == false) { if (signo == SIGTRAP) { |