mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Remove Thread::WORKISWAITING
Set the state directly to Thread::SEARCHING No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -2187,12 +2187,10 @@ void Thread::idle_loop(SplitPoint* sp) {
|
||||
}
|
||||
|
||||
// If this thread has been assigned work, launch a search
|
||||
if (state == Thread::WORKISWAITING)
|
||||
if (state == Thread::SEARCHING)
|
||||
{
|
||||
assert(!do_terminate);
|
||||
|
||||
state = Thread::SEARCHING;
|
||||
|
||||
// Copy split point position and search stack and call search()
|
||||
SearchStack ss[PLY_MAX_PLUS_2];
|
||||
SplitPoint* tsp = splitPoint;
|
||||
|
||||
Reference in New Issue
Block a user