Alexandre Julliard : server: Don't single step into signal handlers.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Apr 3 14:46:18 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 3dd0b2ef6478c0f24a7575b8709a7c83d980683f
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=3dd0b2ef6478c0f24a7575b8709a7c83d980683f

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Apr  3 21:42:42 2006 +0200

server: Don't single step into signal handlers.

---

 server/ptrace.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/server/ptrace.c b/server/ptrace.c
index d7134f2..90053cf 100644
--- a/server/ptrace.c
+++ b/server/ptrace.c
@@ -84,10 +84,7 @@ static int handle_child_status( struct t
         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;
     }




More information about the wine-cvs mailing list