[NativeProcessLinux] Fix assertion failure when killing a process

Linux sometimes sends us a PTRACE_EVENT_EXIT when an inferior process gets a SIGKILL. This can be
confusing, since normally we don't expect any events when the inferior is stopped. This commit
adds code to handle this situation (resume the thread and let it exit normally) and avoid an
assertion failure in ResumeThread().

llvm-svn: 246539
This commit is contained in:
Pavel Labath 2015-09-01 10:59:36 +00:00
parent 55f5c3d43b
commit 86852d3676
1 changed files with 10 additions and 1 deletions

View File

@ -1262,7 +1262,16 @@ NativeProcessLinux::MonitorSIGTRAP(const siginfo_t &info, NativeThreadLinux &thr
SetExitStatus (convert_pid_status_to_exit_type (data), convert_pid_status_to_return_code (data), nullptr, true);
}
ResumeThread(thread, thread.GetState(), LLDB_INVALID_SIGNAL_NUMBER);
StateType state = thread.GetState();
if (! StateIsRunningState(state))
{
// Due to a kernel bug, we may sometimes get this stop after the inferior gets a
// SIGKILL. This confuses our state tracking logic in ResumeThread(), since normally,
// we should not be receiving any ptrace events while the inferior is stopped. This
// makes sure that the inferior is resumed and exits normally.
state = eStateRunning;
}
ResumeThread(thread, state, LLDB_INVALID_SIGNAL_NUMBER);
break;
}