From 40083a432600dac7f87ca3880c012c1fd520a92e Mon Sep 17 00:00:00 2001 From: Jim Ingham <jingham@apple.com> Date: Mon, 24 Feb 2014 19:49:46 +0000 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20process=20the=20stop=20reply=20?= =?UTF-8?q?packet=20as=20a=20generic=20signal=20if=20we=20already=20figure?= =?UTF-8?q?d=20out=20what=20it=20was=20from=20other=20data=20in=20the=20pa?= =?UTF-8?q?cket.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit llvm-svn: 202066 --- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 1a73f6a30df0..1172222d62a4 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) {