X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=e6d400942c3a3cf9102496f783d6a06473fe4b46;hp=b7d426e25e8a14b05e30ed107ad73bf5829e6403;hb=44c78fdb7ad4c82656f25e4da11f3f9d56a4c6aa;hpb=d156e7a20b4ea15c2cbb4bcfa2dca5f1e96ece3b diff --git a/src/thread.h b/src/thread.h index b7d426e2..e6d40094 100644 --- a/src/thread.h +++ b/src/thread.h @@ -69,6 +69,8 @@ struct Thread { bool cutoff_occurred() const; bool is_available_to(int master) const; void idle_loop(SplitPoint* sp); + void listener_loop(); + void timer_loop(); SplitPoint splitPoints[MAX_ACTIVE_SPLIT_POINTS]; MaterialInfoTable materialTable; @@ -112,17 +114,27 @@ public: void set_size(int cnt); void read_uci_options(); bool available_slave_exists(int master) const; + bool split_point_finished(SplitPoint* sp) const; + + void getline(std::string& cmd); + void start_listener(); + void stop_listener(); + void set_timer(int msec); template Value split(Position& pos, SearchStack* ss, Value alpha, Value beta, Value bestValue, Depth depth, Move threatMove, int moveCount, MovePicker* mp, int nodeType); private: - Thread threads[MAX_THREADS]; + friend struct Thread; + + Thread threads[MAX_THREADS + 2]; // Last 2 are the listener and the timer Lock threadsLock; Depth minimumSplitDepth; int maxThreadsPerSplitPoint; int activeThreads; bool useSleepingThreads; + WaitCondition sleepCond; + std::string inputLine; }; extern ThreadsManager Threads;