Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f953cc40
Commit
f953cc40
authored
Aug 09, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Aug 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add some more traces and make the stack offsets easier to read in the stubless interpreter.
parent
88bbbed1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+5
-4
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
f953cc40
...
...
@@ -573,9 +573,10 @@ LONG_PTR WINAPIV NdrClientCall2(PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING pForma
{
stack_size
=
pProcHeader
->
stack_size
;
procedure_number
=
pProcHeader
->
proc_num
;
TRACE
(
"proc num: %d
\n
"
,
procedure_number
);
pFormat
+=
sizeof
(
NDR_PROC_HEADER
);
}
TRACE
(
"stack size: 0x%x
\n
"
,
stack_size
);
TRACE
(
"proc num: %d
\n
"
,
procedure_number
);
/* create the full pointer translation tables, if requested */
if
(
pProcHeader
->
Oi_flags
&
RPC_FC_PROC_OIF_FULLPTR
)
...
...
@@ -856,7 +857,7 @@ LONG_PTR WINAPIV NdrClientCall2(PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING pForma
break
;
TRACE
(
"param[%d]: old format
\n
"
,
i
);
TRACE
(
"
\t
param_direction: %x
\n
"
,
pParam
->
param_direction
);
TRACE
(
"
\t
param_direction:
0x
%x
\n
"
,
pParam
->
param_direction
);
TRACE
(
"
\t
stack_offset: 0x%x
\n
"
,
current_stack_offset_adjusted
);
TRACE
(
"
\t
memory addr (before): %p
\n
"
,
pArg
);
...
...
@@ -1320,7 +1321,7 @@ long WINAPI NdrStubCall2(
TRACE
(
"param[%d]: new format
\n
"
,
i
);
TRACE
(
"
\t
param_attributes:"
);
dump_RPC_FC_PROC_PF
(
pParam
->
param_attributes
);
TRACE
(
"
\n
"
);
TRACE
(
"
\t
stack_offset: %x
\n
"
,
current_stack_offset
);
TRACE
(
"
\t
stack_offset:
0x
%x
\n
"
,
current_stack_offset
);
TRACE
(
"
\t
memory addr (before): %p -> %p
\n
"
,
pArg
,
*
(
unsigned
char
**
)
pArg
);
if
(
pParam
->
param_attributes
.
ServerAllocSize
)
...
...
@@ -1453,7 +1454,7 @@ long WINAPI NdrStubCall2(
TRACE
(
"param[%d]: old format
\n
"
,
i
);
TRACE
(
"
\t
param_direction: 0x%x
\n
"
,
pParam
->
param_direction
);
TRACE
(
"
\t
stack_offset: %x
\n
"
,
current_stack_offset_adjusted
);
TRACE
(
"
\t
stack_offset:
0x
%x
\n
"
,
current_stack_offset_adjusted
);
if
(
pParam
->
param_direction
==
RPC_FC_IN_PARAM_BASETYPE
||
pParam
->
param_direction
==
RPC_FC_RETURN_PARAM_BASETYPE
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment