X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=6cceca7244f59b44205105aa26f3595217751ec4;hb=e6eeb17aa6a79ab49b6c70fb783f54318d63add7;hp=39753f40cfdfe4e2f3397bff2bca5c6c26f922e7;hpb=80d7556af785f57a4f90d121c57c9c2f85a2963e;p=stockfish diff --git a/src/thread.h b/src/thread.h index 39753f40..6cceca72 100644 --- a/src/thread.h +++ b/src/thread.h @@ -34,10 +34,6 @@ #include "search.h" #include "thread_win32.h" -struct Thread; - -const size_t MAX_THREADS = 128; - /// ThreadBase struct is the base of the hierarchy from where we derive all the /// specialized thread classes. @@ -48,12 +44,12 @@ struct ThreadBase : public std::thread { virtual ~ThreadBase() = default; virtual void idle_loop() = 0; void notify_one(); - void wait(std::atomic& b); - void wait_while(std::atomic& b); + void wait(std::atomic_bool& b); + void wait_while(std::atomic_bool& b); Mutex mutex; ConditionVariable sleepCondition; - std::atomic exit; + std::atomic_bool exit; }; @@ -72,36 +68,26 @@ struct Thread : public ThreadBase { Material::Table materialTable; Endgames endgames; size_t idx, PVIdx; - int maxPly; - std::atomic searching; + int maxPly, callsCnt; + std::atomic_bool searching, resetCallsCnt; Position rootPos; Search::RootMoveVector rootMoves; Depth rootDepth; - Search::Stack stack[MAX_PLY+4]; HistoryStats history; MovesStats counterMoves; + Depth completedDepth; }; -/// MainThread and TimerThread are derived classes used to characterize the two -/// special threads: the main one and the recurring timer. +/// MainThread is a derived classes used to characterize the the main one struct MainThread : public Thread { MainThread() { thinking = true; } // Avoid a race with start_thinking() virtual void idle_loop(); void join(); void think(); - std::atomic thinking; -}; - -struct TimerThread : public ThreadBase { - - static const int Resolution = 5; // Millisec between two check_time() calls - - virtual void idle_loop(); - - bool run = false; + std::atomic_bool thinking; }; @@ -111,14 +97,13 @@ struct TimerThread : public ThreadBase { struct ThreadPool : public std::vector { - void init(); // No constructor and destructor, threads rely on globals that should + void init(); // No constructor and destructor, threads rely on globals that should void exit(); // be initialized and valid during the whole thread lifetime. MainThread* main() { return static_cast(at(0)); } void read_uci_options(); void start_thinking(const Position&, const Search::LimitsType&, Search::StateStackPtr&); int64_t nodes_searched(); - TimerThread* timer; }; extern ThreadPool Threads;