12 Jun
2023
12 Jun
'23
10:34 a.m.
Huw Davies (@huw) commented about dlls/mmdevapi/main.c:
DisableThreadLibraryCalls(hinstDLL); break; case DLL_PROCESS_DETACH: + main_loop_stop(); +
Doesn't this cause a deadlock? This call will block until the main loop thread terminates, but that thread is not told to terminate until the process_detach syscall, which is called later on. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3027#note_35433