X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=dc8418dcca5795a06f6b0a7f90244c1cca34b497;hb=4630ab574333be3cfabb6fcf3eca6d66ae961fe1;hp=92f5ed33a168b9742c176055759b01cb78c2c6e7;hpb=a3a0df92a3ed5ce7c98ff596e687d3d6533590c8;p=stockfish diff --git a/src/thread.h b/src/thread.h index 92f5ed33..dc8418dc 100644 --- a/src/thread.h +++ b/src/thread.h @@ -151,13 +151,13 @@ struct TimerThread : public ThreadBase { /// 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();