X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=2f1237a3b0c6b5b02b27636d9c3d78d02f31c84d;hp=f88e359b0373436db1f6c445f72f4b04448667e7;hb=6ed81f09ffa513f0938c1a16fa4edd55e552c178;hpb=fda0161e3a5295a759f04a0e302567a773f82595 diff --git a/src/thread.cpp b/src/thread.cpp index f88e359b..2f1237a3 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -18,9 +18,9 @@ along with this program. If not, see . */ -#include // For std::count #include +#include // For std::count #include "movegen.h" #include "search.h" #include "thread.h" @@ -32,7 +32,7 @@ ThreadPool Threads; // Global object /// Thread constructor launches the thread and waits until it goes to sleep -/// in idle_loop(). Note that 'searching' and 'exit' should be alredy set. +/// in idle_loop(). Note that 'searching' and 'exit' should be already set. Thread::Thread(size_t n) : idx(n), stdThread(&Thread::idle_loop, this) { @@ -162,8 +162,8 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states, main()->wait_for_search_finished(); - stopOnPonderhit = stop = false; - ponder = ponderMode; + main()->stopOnPonderhit = stop = false; + main()->ponder = ponderMode; Search::Limits = limits; Search::RootMoves rootMoves;