Module: wine Branch: master Commit: 28a9374323f18e460302e87fae8173bb5478f4c4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=28a9374323f18e460302e87fae...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Mar 23 11:49:59 2007 +0100
server: Print the callback function in the APC_ASYNC_IO trace.
---
server/trace.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/server/trace.c b/server/trace.c index 2ea1860..a332821 100644 --- a/server/trace.c +++ b/server/trace.c @@ -116,8 +116,9 @@ static void dump_apc_call( const apc_call_t *call ) fprintf( stderr, ",arg=%p", call->timer.arg ); break; case APC_ASYNC_IO: - fprintf( stderr, "APC_ASYNC_IO,user=%p,sb=%p,status=%s", - call->async_io.user, call->async_io.sb, get_status_name(call->async_io.status) ); + fprintf( stderr, "APC_ASYNC_IO,func=%p,user=%p,sb=%p,status=%s", + call->async_io.func, call->async_io.user, call->async_io.sb, + get_status_name(call->async_io.status) ); break; case APC_VIRTUAL_ALLOC: fprintf( stderr, "APC_VIRTUAL_ALLOC,addr=%p,size=%lu,zero_bits=%u,op_type=%x,prot=%x",