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
fed06be7
Commit
fed06be7
authored
Jan 11, 2005
by
Christian Costa
Committed by
Alexandre Julliard
Jan 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wait until the thread has created its message queue before posting a
message otherwise it will be lost.
parent
88d049d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
performance.c
dlls/dmime/performance.c
+10
-0
No files found.
dlls/dmime/performance.c
View file @
fed06be7
...
@@ -145,10 +145,20 @@ outofthread:
...
@@ -145,10 +145,20 @@ outofthread:
static
BOOL
PostMessageToProcessMsgThread
(
IDirectMusicPerformance8Impl
*
This
,
UINT
iMsg
)
{
static
BOOL
PostMessageToProcessMsgThread
(
IDirectMusicPerformance8Impl
*
This
,
UINT
iMsg
)
{
if
(
FALSE
==
This
->
procThreadTicStarted
&&
PROCESSMSG_EXIT
!=
iMsg
)
{
if
(
FALSE
==
This
->
procThreadTicStarted
&&
PROCESSMSG_EXIT
!=
iMsg
)
{
BOOL
res
;
This
->
procThread
=
CreateThread
(
NULL
,
0
,
ProcessMsgThread
,
This
,
0
,
&
This
->
procThreadId
);
This
->
procThread
=
CreateThread
(
NULL
,
0
,
ProcessMsgThread
,
This
,
0
,
&
This
->
procThreadId
);
if
(
NULL
==
This
->
procThread
)
return
FALSE
;
if
(
NULL
==
This
->
procThread
)
return
FALSE
;
SetThreadPriority
(
This
->
procThread
,
THREAD_PRIORITY_TIME_CRITICAL
);
SetThreadPriority
(
This
->
procThread
,
THREAD_PRIORITY_TIME_CRITICAL
);
This
->
procThreadTicStarted
=
TRUE
;
This
->
procThreadTicStarted
=
TRUE
;
while
(
1
)
{
res
=
PostThreadMessageA
(
This
->
procThreadId
,
iMsg
,
0
,
0
);
/* Let the thread creates its message queue (with MsgWaitForMultipleObjects call) by yielding and retrying */
if
(
!
res
&&
(
GetLastError
()
==
ERROR_INVALID_THREAD_ID
))
Sleep
(
0
);
else
break
;
}
return
res
;
}
}
return
PostThreadMessageA
(
This
->
procThreadId
,
iMsg
,
0
,
0
);
return
PostThreadMessageA
(
This
->
procThreadId
,
iMsg
,
0
,
0
);
}
}
...
...
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