Commit 3dd0b2ef authored by Alexandre Julliard's avatar Alexandre Julliard

server: Don't single step into signal handlers.

parent a1f0f391
......@@ -84,10 +84,7 @@ static int handle_child_status( struct thread *thread, int pid, int status, int
if (sig != want_sig)
{
/* ignore other signals for now */
if (thread && get_thread_single_step( thread ))
ptrace( PTRACE_SINGLESTEP, pid, (caddr_t)1, sig );
else
ptrace( PTRACE_CONT, pid, (caddr_t)1, sig );
ptrace( PTRACE_CONT, pid, (caddr_t)1, sig );
}
return sig;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment