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
13893412
Commit
13893412
authored
Jun 23, 2005
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NT4 doesn't support ProcessIoCounters.
parent
2dce2325
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
info.c
dlls/ntdll/tests/info.c
+8
-0
No files found.
dlls/ntdll/tests/info.c
View file @
13893412
...
...
@@ -445,6 +445,14 @@ static void test_query_process_io(void)
ULONG
ReturnLength
;
IO_COUNTERS
pii
;
/* NT4 doesn't support this information class, so check for it */
status
=
pNtQueryInformationProcess
(
GetCurrentProcess
(),
ProcessIoCounters
,
&
pii
,
sizeof
(
pii
),
&
ReturnLength
);
if
(
status
==
STATUS_NOT_SUPPORTED
)
{
trace
(
"ProcessIoCounters information class not supported, skipping tests
\n
"
);
return
;
}
status
=
pNtQueryInformationProcess
(
NULL
,
ProcessIoCounters
,
NULL
,
sizeof
(
pii
),
NULL
);
ok
(
status
==
STATUS_ACCESS_VIOLATION
||
status
==
STATUS_INVALID_HANDLE
,
"Expected STATUS_ACCESS_VIOLATION or STATUS_INVALID_HANDLE(W2K3), got %08lx
\n
"
,
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