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
85b52e56
Commit
85b52e56
authored
Dec 30, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Jan 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Moved ok-statement to the appropriate place.
parent
83f071cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
thread.c
dlls/kernel32/tests/thread.c
+3
-2
No files found.
dlls/kernel32/tests/thread.c
View file @
85b52e56
...
@@ -469,6 +469,9 @@ static VOID test_thread_priority(void)
...
@@ -469,6 +469,9 @@ static VOID test_thread_priority(void)
if
(
rc
==
0
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
if
(
rc
==
0
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
return
;
/* WinME */
return
;
/* WinME */
todo_wine
ok
(
rc
!=
0
,
"error=%d
\n
"
,
GetLastError
());
/* check that access control is obeyed */
/* check that access control is obeyed */
access_thread
=
pOpenThread
(
THREAD_ALL_ACCESS
&
access_thread
=
pOpenThread
(
THREAD_ALL_ACCESS
&
(
~
THREAD_QUERY_INFORMATION
)
&
(
~
THREAD_SET_INFORMATION
),
(
~
THREAD_QUERY_INFORMATION
)
&
(
~
THREAD_SET_INFORMATION
),
...
@@ -481,8 +484,6 @@ static VOID test_thread_priority(void)
...
@@ -481,8 +484,6 @@ static VOID test_thread_priority(void)
}
}
todo_wine
{
todo_wine
{
ok
(
rc
!=
0
,
"error=%d
\n
"
,
GetLastError
());
rc
=
pSetThreadPriorityBoost
(
curthread
,
1
);
rc
=
pSetThreadPriorityBoost
(
curthread
,
1
);
ok
(
rc
!=
0
,
"error=%d
\n
"
,
GetLastError
());
ok
(
rc
!=
0
,
"error=%d
\n
"
,
GetLastError
());
rc
=
pGetThreadPriorityBoost
(
curthread
,
&
disabled
);
rc
=
pGetThreadPriorityBoost
(
curthread
,
&
disabled
);
...
...
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