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
7a87da8f
Commit
7a87da8f
authored
Oct 18, 2022
by
Brendan Shanks
Committed by
Alexandre Julliard
Oct 20, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi: Set the name of internal threads.
parent
fe5989bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
devenum.c
dlls/mmdevapi/devenum.c
+2
-0
main.c
dlls/mmdevapi/main.c
+2
-0
No files found.
dlls/mmdevapi/devenum.c
View file @
7a87da8f
...
...
@@ -1163,6 +1163,8 @@ static DWORD WINAPI notif_thread_proc(void *user)
WCHAR
out_name
[
64
],
vout_name
[
64
],
in_name
[
64
],
vin_name
[
64
];
DWORD
size
;
SetThreadDescription
(
GetCurrentThread
(),
L"wine_mmdevapi_notification"
);
lstrcpyW
(
reg_key
,
drv_keyW
);
lstrcatW
(
reg_key
,
L"
\\
"
);
lstrcatW
(
reg_key
,
drvs
.
module_name
);
...
...
dlls/mmdevapi/main.c
View file @
7a87da8f
...
...
@@ -381,6 +381,8 @@ static DWORD WINAPI activate_async_threadproc(void *user)
{
struct
activate_async_op
*
op
=
user
;
SetThreadDescription
(
GetCurrentThread
(),
L"wine_mmdevapi_activate_async"
);
IActivateAudioInterfaceCompletionHandler_ActivateCompleted
(
op
->
callback
,
&
op
->
IActivateAudioInterfaceAsyncOperation_iface
);
IActivateAudioInterfaceAsyncOperation_Release
(
&
op
->
IActivateAudioInterfaceAsyncOperation_iface
);
...
...
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