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
67637420
Commit
67637420
authored
Jul 24, 2007
by
Matt Jones
Committed by
Alexandre Julliard
Jul 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Only commit SetThreadPriority if new priority is correct.
parent
f204ed1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
15 deletions
+28
-15
thread.c
dlls/kernel32/tests/thread.c
+10
-14
thread.c
server/thread.c
+18
-1
No files found.
dlls/kernel32/tests/thread.c
View file @
67637420
...
@@ -594,25 +594,21 @@ static VOID test_thread_priority(void)
...
@@ -594,25 +594,21 @@ static VOID test_thread_priority(void)
SetLastError
(
0xdeadbeef
);
SetLastError
(
0xdeadbeef
);
rc
=
SetThreadPriority
(
curthread
,
min_priority
-
1
);
rc
=
SetThreadPriority
(
curthread
,
min_priority
-
1
);
todo_wine
{
ok
(
rc
==
FALSE
,
"SetThreadPriority passed with a bad argument
\n
"
);
ok
(
rc
==
FALSE
,
"SetThreadPriority passed with a bad argument
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
ok
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"SetThreadPriority error %d, expected ERROR_INVALID_PARAMETER (87)
\n
"
,
GetLastError
());
"SetThreadPriority error %d, expected ERROR_INVALID_PARAMETER (87)
\n
"
,
GetLastError
());
ok
(
GetThreadPriority
(
curthread
)
==
min_priority
,
ok
(
GetThreadPriority
(
curthread
)
==
min_priority
,
"GetThreadPriority didn't return min_priority
\n
"
);
"GetThreadPriority didn't return min_priority
\n
"
);
}
SetThreadPriority
(
curthread
,
max_priority
);
SetThreadPriority
(
curthread
,
max_priority
);
SetLastError
(
0xdeadbeef
);
SetLastError
(
0xdeadbeef
);
rc
=
SetThreadPriority
(
curthread
,
max_priority
+
1
);
rc
=
SetThreadPriority
(
curthread
,
max_priority
+
1
);
todo_wine
{
ok
(
rc
==
FALSE
,
"SetThreadPriority passed with a bad argument
\n
"
);
ok
(
rc
==
FALSE
,
"SetThreadPriority passed with a bad argument
\n
"
);
ok
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
ok
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"SetThreadPriority error %d, expected ERROR_INVALID_PARAMETER (87)
\n
"
,
GetLastError
());
"SetThreadPriority error %d, expected ERROR_INVALID_PARAMETER (87)
\n
"
,
GetLastError
());
ok
(
GetThreadPriority
(
curthread
)
==
max_priority
,
ok
(
GetThreadPriority
(
curthread
)
==
max_priority
,
"GetThreadPriority didn't return max_priority
\n
"
);
"GetThreadPriority didn't return max_priority
\n
"
);
}
/* Check thread priority boost */
/* Check thread priority boost */
if
(
!
pGetThreadPriorityBoost
||
!
pSetThreadPriorityBoost
)
if
(
!
pGetThreadPriorityBoost
||
!
pSetThreadPriorityBoost
)
...
...
server/thread.c
View file @
67637420
...
@@ -383,12 +383,29 @@ struct thread *get_thread_from_pid( int pid )
...
@@ -383,12 +383,29 @@ struct thread *get_thread_from_pid( int pid )
return
NULL
;
return
NULL
;
}
}
#define THREAD_PRIORITY_REALTIME_HIGHEST 6
#define THREAD_PRIORITY_REALTIME_LOWEST -7
/* set all information about a thread */
/* set all information about a thread */
static
void
set_thread_info
(
struct
thread
*
thread
,
static
void
set_thread_info
(
struct
thread
*
thread
,
const
struct
set_thread_info_request
*
req
)
const
struct
set_thread_info_request
*
req
)
{
{
if
(
req
->
mask
&
SET_THREAD_INFO_PRIORITY
)
if
(
req
->
mask
&
SET_THREAD_INFO_PRIORITY
)
thread
->
priority
=
req
->
priority
;
{
int
max
=
THREAD_PRIORITY_HIGHEST
;
int
min
=
THREAD_PRIORITY_LOWEST
;
if
(
thread
->
process
->
priority
==
PROCESS_PRIOCLASS_REALTIME
)
{
max
=
THREAD_PRIORITY_REALTIME_HIGHEST
;
min
=
THREAD_PRIORITY_REALTIME_LOWEST
;
}
if
((
req
->
priority
>=
min
&&
req
->
priority
<=
max
)
||
req
->
priority
==
THREAD_PRIORITY_IDLE
||
req
->
priority
==
THREAD_PRIORITY_TIME_CRITICAL
)
thread
->
priority
=
req
->
priority
;
else
set_error
(
STATUS_INVALID_PARAMETER
);
}
if
(
req
->
mask
&
SET_THREAD_INFO_AFFINITY
)
if
(
req
->
mask
&
SET_THREAD_INFO_AFFINITY
)
{
{
if
(
req
->
affinity
!=
1
)
set_error
(
STATUS_INVALID_PARAMETER
);
if
(
req
->
affinity
!=
1
)
set_error
(
STATUS_INVALID_PARAMETER
);
...
...
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