X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=af506609ed9f1e1ee0610e19fe63044e13de23ad;hp=686441cb52c2c1e506b57043e947ec4052c68e8e;hb=bad18bccb60c874410edd3f61624696d3abc3cbc;hpb=b8efa0daac897e1b8f3efb9ca09ec4151492f1e0 diff --git a/src/thread.h b/src/thread.h index 686441cb..af506609 100644 --- a/src/thread.h +++ b/src/thread.h @@ -32,7 +32,7 @@ #include "pawns.h" #include "position.h" #include "search.h" -#include "thread_win32.h" +#include "thread_win32_osx.h" /// Thread class keeps together all the thread-related stuff. We use @@ -46,7 +46,7 @@ class Thread { ConditionVariable cv; size_t idx; bool exit = false, searching = true; // Set before starting std::thread - std::thread stdThread; + NativeThread stdThread; public: explicit Thread(size_t);