mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 10:06:26 +08:00
Move stop signal to Threads
Instead of having Signals in the search namespace, make the stop variables part of the Threads structure. This moves more of the shared (atomic) variables towards the thread-related structures, making their role more clear. No functional change Closes #1149
This commit is contained in:
committed by
Joona Kiiski
parent
0371a8f8c4
commit
36a93d90f7
@@ -101,6 +101,8 @@ struct ThreadPool : public std::vector<Thread*> {
|
||||
uint64_t nodes_searched() const;
|
||||
uint64_t tb_hits() const;
|
||||
|
||||
std::atomic_bool stop, stopOnPonderhit;
|
||||
|
||||
private:
|
||||
StateListPtr setupStates;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user