X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=4c582e08d54645933dd2b8bd627938259faa2f5f;hp=5c0ac84bae6f44c2de0f33f319ef568a5104f539;hb=8307da0de77c9c7bbf7c56a7d9c8a688ff4dfb4e;hpb=0759d8f4302d0ad262a2dabca465f1618677aeba diff --git a/src/thread.cpp b/src/thread.cpp index 5c0ac84b..4c582e08 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -197,7 +197,7 @@ void ThreadsManager::exit() { for (int i = 0; i <= MAX_THREADS; i++) { - threads[i].do_terminate = true; + threads[i].do_terminate = true; // Search must be already finished threads[i].wake_up(); // Wait for thread termination @@ -458,6 +458,27 @@ void ThreadsManager::start_thinking(const Position& pos, const LimitsType& limit } +// ThreadsManager::stop_thinking() is used by UI thread to raise a stop request +// and to wait for the main thread finishing the search. Needed to wait exiting +// and terminate the threads after a 'quit' command. + +void ThreadsManager::stop_thinking() { + + Thread& main = threads[0]; + + Search::Signals.stop = true; + + lock_grab(&main.sleepLock); + + cond_signal(&main.sleepCond); // In case is waiting for stop or ponderhit + + while (!main.do_sleep) + cond_wait(&sleepCond, &main.sleepLock); + + lock_release(&main.sleepLock); +} + + // ThreadsManager::wait_for_stop_or_ponderhit() is called when the maximum depth // is reached while the program is pondering. The point is to work around a wrinkle // in the UCI protocol: When pondering, the engine is not allowed to give a