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
542e11fc
Commit
542e11fc
authored
Mar 06, 2024
by
Brendan Shanks
Committed by
Alexandre Julliard
Mar 07, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Set the name of internal threads.
parent
83476e3d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
filesource.c
dlls/quartz/filesource.c
+2
-0
filtergraph.c
dlls/quartz/filtergraph.c
+2
-0
systemclock.c
dlls/quartz/systemclock.c
+1
-0
No files found.
dlls/quartz/filesource.c
View file @
542e11fc
...
...
@@ -381,6 +381,8 @@ static DWORD CALLBACK io_thread(void *arg)
DWORD
size
;
BOOL
ret
;
SetThreadDescription
(
GetCurrentThread
(),
L"wine_qz_async_reader_io"
);
for
(;;)
{
ret
=
GetQueuedCompletionStatus
(
filter
->
port
,
&
size
,
&
key
,
&
ovl
,
INFINITE
);
...
...
dlls/quartz/filtergraph.c
View file @
542e11fc
...
...
@@ -1033,6 +1033,8 @@ static DWORD WINAPI message_thread_run(void *ctx)
{
MSG
msg
;
SetThreadDescription
(
GetCurrentThread
(),
L"wine_qz_graph_worker"
);
/* Make sure we have a message queue. */
PeekMessageW
(
&
msg
,
NULL
,
0
,
0
,
PM_NOREMOVE
);
SetEvent
(
message_thread_ret
);
...
...
dlls/quartz/systemclock.c
View file @
542e11fc
...
...
@@ -144,6 +144,7 @@ static DWORD WINAPI SystemClockAdviseThread(void *param)
REFERENCE_TIME
current_time
;
TRACE
(
"Starting advise thread for clock %p.
\n
"
,
clock
);
SetThreadDescription
(
GetCurrentThread
(),
L"wine_qz_clock_advise"
);
for
(;;)
{
...
...
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