commit | ae4ecb6c6448f6069f81f14ba0f84f0fc1b54e9e | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Thu Jan 18 12:23:29 2007 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Jan 18 12:23:29 2007 +0100 |
tree | 78e570ba804d4385c1704f452b63c43187bf28b2 | |
parent | 8891d6de48fdc43ef045fcc7470297952a97ed92 [diff] [blame] |
server: Print a trace when sending a signal to a thread.
diff --git a/server/ptrace.c b/server/ptrace.c index 37c15c0..14a29f5 100644 --- a/server/ptrace.c +++ b/server/ptrace.c
@@ -262,6 +262,8 @@ thread->unix_tid = -1; } } + if (debug_level && ret != -1) + fprintf( stderr, "%04x: *sent signal* signal=%d\n", thread->id, sig ); return (ret != -1); }