This commit is contained in:
Keno Fischer 2024-07-31 05:00:17 +02:00 committed by GitHub
commit 7df73ba366
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 8 deletions

View File

@ -460,14 +460,7 @@ int BLASFUNC(blas_thread_shutdown)(void) {
for (i = 0; i < blas_num_threads - 1; i++) {
// Could also just use WaitForMultipleObjects
DWORD wait_thread_value = WaitForSingleObject(blas_threads[i], 50);
#ifndef OS_WINDOWSSTORE
// TerminateThread is only available with WINAPI_DESKTOP and WINAPI_SYSTEM not WINAPI_APP in UWP
if (WAIT_OBJECT_0 != wait_thread_value) {
TerminateThread(blas_threads[i],0);
}
#endif
DWORD wait_thread_value = WaitForSingleObject(blas_threads[i], INFINITE);
CloseHandle(blas_threads[i]);
}