X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=dc8418dcca5795a06f6b0a7f90244c1cca34b497;hp=645482673ba1b93fbc1dfe9449b329aee0abf049;hb=86347100a5c1113e9306d63a16cde2866839373b;hpb=800410eef1c0811d046ee2332b3afda21284b876 diff --git a/src/thread.h b/src/thread.h index 64548267..dc8418dc 100644 --- a/src/thread.h +++ b/src/thread.h @@ -114,9 +114,7 @@ struct Thread : public ThreadBase { Thread(); virtual void idle_loop(); bool cutoff_occurred() const; - bool is_available_to(const Thread* master) const; - ExtMove* get_moves_array() { return &movePages[curPage += MAX_MOVES]; } - void free_moves_array() { curPage -= MAX_MOVES; } + bool available_to(const Thread* master) const; template void split(Position& pos, const Search::Stack* ss, Value alpha, Value beta, Value* bestValue, Move* bestMove, @@ -127,8 +125,6 @@ struct Thread : public ThreadBase { Endgames endgames; Pawns::Table pawnsTable; Position* activePosition; - std::vector movePages; - int curPage; size_t idx; int maxPly; SplitPoint* volatile activeSplitPoint; @@ -147,20 +143,21 @@ struct MainThread : public Thread { }; struct TimerThread : public ThreadBase { - TimerThread() : msec(0) {} + TimerThread() : run(false) {} virtual void idle_loop(); - int msec; + bool run; + static const int Resolution = 5; // msec between two check_time() calls }; /// ThreadPool struct handles all the threads related stuff like init, starting, -/// parking and, the most important, launching a slave thread at a split point. +/// parking and, most importantly, launching a slave thread at a split point. /// All the access to shared thread data is done through this class. struct ThreadPool : public std::vector { void init(); // No c'tor and d'tor, threads rely on globals that should - void exit(); // be initialized and valid during the whole thread lifetime. + void exit(); // be initialized and are valid during the whole thread lifetime. MainThread* main() { return static_cast((*this)[0]); } void read_uci_options();