Skip to content

Commit 8ba9e2a

Browse files
committed
Also call CloseHandle on each thread, as well as on the event so as to not leak thread handles.
1 parent 4ad694e commit 8ba9e2a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

driver/others/blas_server_win32.c

+5
Original file line numberDiff line numberDiff line change
@@ -461,13 +461,18 @@ int BLASFUNC(blas_thread_shutdown)(void){
461461
SetEvent(pool.killed);
462462

463463
for(i = 0; i < blas_num_threads - 1; i++){
464+
// Could also just use WaitForMultipleObjects
464465
WaitForSingleObject(blas_threads[i], 5); //INFINITE);
465466
#ifndef OS_WINDOWSSTORE
466467
// TerminateThread is only available with WINAPI_DESKTOP and WINAPI_SYSTEM not WINAPI_APP in UWP
467468
TerminateThread(blas_threads[i],0);
468469
#endif
470+
CloseHandle(blas_threads[i]);
469471
}
470472

473+
CloseHandle(pool.filled);
474+
CloseHandle(pool.killed);
475+
471476
blas_server_avail = 0;
472477
}
473478

exports/dllinit.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason, LPVOID reserved) {
5656
break;
5757
case DLL_THREAD_DETACH:
5858
#if defined(SMP) && defined(USE_TLS)
59-
blas_thread_memory_cleanup(void);
59+
blas_thread_memory_cleanup();
6060
#endif
6161
break;
6262
}

0 commit comments

Comments
 (0)