From: Marc-Aurel Zent <mzent(a)codeweavers.com> This reverts commit ed666db8d8d6afd740a266584a38e08622474821. --- dlls/ntdll/unix/loader.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/ntdll/unix/loader.c b/dlls/ntdll/unix/loader.c index 228732e572c..34e9c0d87e5 100644 --- a/dlls/ntdll/unix/loader.c +++ b/dlls/ntdll/unix/loader.c @@ -2065,9 +2065,6 @@ static void apple_create_wine_thread( void *arg ) pthread_attr_init( &attr ); pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_JOINABLE ); - /* Use the same QoS class as the process main thread (user-interactive). */ - if (pthread_attr_set_qos_class_np) - pthread_attr_set_qos_class_np( &attr, QOS_CLASS_USER_INTERACTIVE, 0 ); if (pthread_create( &thread, &attr, apple_wine_thread, NULL )) exit(1); pthread_attr_destroy( &attr ); } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9262