X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=cb0ab5e9c258eea998fe9c5892e77e88562308c2;hp=832648015cfd362cf9488cca93c663b005fc1af4;hb=f80c50bcddfd02c1b93dcde067d6a7362dda53a2;hpb=d282cf6964d493706b6face7109e1859eab1742f diff --git a/src/thread.cpp b/src/thread.cpp index 83264801..cb0ab5e9 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -367,7 +367,7 @@ template Value ThreadsManager::split(Position&, Stack*, Value, Value, Valu // Thread::timer_loop() is where the timer thread waits maxPly milliseconds and // then calls do_timer_event(). If maxPly is 0 thread sleeps until is woken up. -extern void do_timer_event(); +extern void check_time(); void Thread::timer_loop() { @@ -376,7 +376,7 @@ void Thread::timer_loop() { lock_grab(&sleepLock); timed_wait(&sleepCond, &sleepLock, maxPly ? maxPly : INT_MAX); lock_release(&sleepLock); - do_timer_event(); + check_time(); } }