Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
c08b9c5b
Commit
c08b9c5b
authored
26 years ago
by
Ulrich Weigand
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Bugfix: DirectedYield() only to 16-bit tasks in ReplyMessage().
parent
36d10c88
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
windows/message.c
+1
-1
1 addition, 1 deletion
windows/message.c
with
1 addition
and
1 deletion
windows/message.c
+
1
−
1
View file @
c08b9c5b
...
...
@@ -821,7 +821,7 @@ BOOL WINAPI ReplyMessage( LRESULT result )
LeaveCriticalSection
(
&
senderQ
->
cSection
);
/* switch directly to sending task (16 bit thread only) */
if
(
THREAD_IsWin16
(
THREAD_Current
()
))
if
(
THREAD_IsWin16
(
THREAD_Current
()
)
&&
THREAD_IsWin16
(
senderQ
->
thdb
)
)
DirectedYield16
(
senderQ
->
thdb
->
teb
.
htask16
);
ret
=
TRUE
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment