forked from OSchip/llvm-project
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
This commit is contained in:
parent
ca49851833
commit
40083a4326
lldb/source/Plugins/Process/gdb-remote
|
@ -1735,7 +1735,7 @@ ProcessGDBRemote::SetThreadStopInfo (StringExtractor& stop_packet)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (signo && did_exec == false)
|
if (!handled && signo && did_exec == false)
|
||||||
{
|
{
|
||||||
if (signo == SIGTRAP)
|
if (signo == SIGTRAP)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue