X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=8b7c0126ce8621882f9176d87107bd83c8f17e0d;hp=c6dc83168ac79d8eb6dac948bfa66fcb6e4a2098;hb=ea6c1f7a17572f1cd291ffd00e28cfbd3b2947d5;hpb=158014b39d69eaaf791d4913b98ffde5c4d7a874 diff --git a/src/thread.h b/src/thread.h index c6dc8316..8b7c0126 100644 --- a/src/thread.h +++ b/src/thread.h @@ -22,7 +22,6 @@ #include -#include "evaluate.h" #include "material.h" #include "movepick.h" #include "pawns.h" @@ -100,16 +99,15 @@ public: Thread(Fn fn); ~Thread(); - void wake_up(); + void notify_one(); bool cutoff_occurred() const; bool is_available_to(Thread* master) const; void idle_loop(); void main_loop(); void timer_loop(); - void wait_for_stop_or_ponderhit(); + void wait_for(volatile const bool& b); SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD]; - Eval::Table evalTable; Material::Table materialTable; Endgames endgames; Pawns::Table pawnsTable; @@ -143,8 +141,6 @@ public: size_t size() const { return threads.size(); } Thread* main_thread() { return threads[0]; } - void wake_up() const; - void sleep() const; void read_uci_options(); bool available_slave_exists(Thread* master) const; void set_timer(int msec);