mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 01:05:08 +00:00
LibDebug: Fix crash when debugging short lived programs
This commit is contained in:
parent
1851da9c93
commit
66f9a2d9ec
1 changed files with 5 additions and 10 deletions
|
@ -64,6 +64,11 @@ OwnPtr<DebugSession> DebugSession::exec_and_attach(const String& command)
|
||||||
{
|
{
|
||||||
int pid = fork();
|
int pid = fork();
|
||||||
|
|
||||||
|
if (pid < 0) {
|
||||||
|
perror("fork");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
if (!pid) {
|
if (!pid) {
|
||||||
if (ptrace(PT_TRACE_ME, 0, 0, 0) < 0) {
|
if (ptrace(PT_TRACE_ME, 0, 0, 0) < 0) {
|
||||||
perror("PT_TRACE_ME");
|
perror("PT_TRACE_ME");
|
||||||
|
@ -93,16 +98,6 @@ OwnPtr<DebugSession> DebugSession::exec_and_attach(const String& command)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (waitpid(pid, nullptr, WSTOPPED) != pid) {
|
|
||||||
perror("waitpid");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ptrace(PT_CONTINUE, pid, 0, 0) < 0) {
|
|
||||||
perror("continue");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// We want to continue until the exit from the 'execve' sycsall.
|
// We want to continue until the exit from the 'execve' sycsall.
|
||||||
// This ensures that when we start debugging the process
|
// This ensures that when we start debugging the process
|
||||||
// it executes the target image, and not the forked image of the tracing process.
|
// it executes the target image, and not the forked image of the tracing process.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue