X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=a8e26b9f85c43a69a3f0260db1313285ca3ccee2;hp=e631645b3a836350b32f6ed703509e662f6fa4af;hb=86b95f210508de4c30fb5ee9f86efee6641d45f8;hpb=1e92df6b20aa224026b435e03169edaf4bbecdc1 diff --git a/src/thread.cpp b/src/thread.cpp index e631645b..a8e26b9f 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -163,12 +163,12 @@ void ThreadsManager::init() { threads[i].threadID = i; #if defined(_MSC_VER) - bool ok = (CreateThread(NULL, 0, start_routine, (LPVOID)&threads[i].threadID , 0, NULL) != NULL); + threads[i].handle = CreateThread(NULL, 0, start_routine, (LPVOID)&threads[i].threadID, 0, NULL); + bool ok = (threads[i].handle != NULL); #else - pthread_t pthreadID; - bool ok = (pthread_create(&pthreadID, NULL, start_routine, (void*)&threads[i].threadID) == 0); - pthread_detach(pthreadID); + bool ok = (pthread_create(&threads[i].handle, NULL, start_routine, (void*)&threads[i].threadID) == 0); #endif + if (!ok) { std::cout << "Failed to create thread number " << i << std::endl; @@ -189,7 +189,14 @@ void ThreadsManager::exit() { { threads[i].do_terminate = true; threads[i].wake_up(); - while (threads[i].state != Thread::TERMINATED) {} + +#if defined(_MSC_VER) + WaitForSingleObject(threads[i].handle, 0); + CloseHandle(threads[i].handle); +#else + pthread_join(threads[i].handle, NULL); + pthread_detach(threads[i].handle); +#endif } // Now we can safely destroy locks and wait conditions