commit | f3cb4f7d9419d25f3b430cbf935f61bc214c00aa | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Thu Jan 18 15:41:05 2007 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Jan 18 15:41:05 2007 +0100 |
tree | a6fc1079d46905a2f65f2e3249178a13e82570f3 | |
parent | 9d09e699d6614a5e3fbb565aaa78d86667e46f8c [diff] [blame] |
ntdll: Avoid inter-process APCs when called for the process itself.
diff --git a/server/trace.c b/server/trace.c index a70755c..0c0798e 100644 --- a/server/trace.c +++ b/server/trace.c
@@ -995,7 +995,8 @@ static void dump_queue_apc_reply( const struct queue_apc_reply *req ) { - fprintf( stderr, " handle=%p", req->handle ); + fprintf( stderr, " handle=%p,", req->handle ); + fprintf( stderr, " self=%d", req->self ); } static void dump_get_apc_request( const struct get_apc_request *req )