Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cd1f412d
Commit
cd1f412d
authored
Nov 25, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl: Use the magic format string prefix for relay traces.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
01676c5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+3
-6
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
cd1f412d
...
...
@@ -1295,15 +1295,12 @@ NTSTATUS WINAPI IoCallDriver( DEVICE_OBJECT *device, IRP *irp )
irpsp
=
--
irp
->
Tail
.
Overlay
.
s
.
u2
.
CurrentStackLocation
;
dispatch
=
device
->
DriverObject
->
MajorFunction
[
irpsp
->
MajorFunction
];
if
(
TRACE_ON
(
relay
))
DPRINTF
(
"%04x:Call driver dispatch %p (device=%p,irp=%p)
\n
"
,
GetCurrentThreadId
(),
dispatch
,
device
,
irp
);
TRACE_
(
relay
)(
"
\1
Call driver dispatch %p (device=%p,irp=%p)
\n
"
,
dispatch
,
device
,
irp
);
status
=
dispatch
(
device
,
irp
);
if
(
TRACE_ON
(
relay
))
DPRINTF
(
"%04x:Ret driver dispatch %p (device=%p,irp=%p) retval=%08x
\n
"
,
GetCurrentThreadId
(),
dispatch
,
device
,
irp
,
status
);
TRACE_
(
relay
)(
"
\1
Ret driver dispatch %p (device=%p,irp=%p) retval=%08x
\n
"
,
dispatch
,
device
,
irp
,
status
);
return
status
;
}
...
...
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