X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fuci.cpp;h=2c07807c1b678b2ee0bfb26325439b3853781ffa;hb=e51965aa57ddc50d04016e3622da49cf9f8e6238;hp=b7127b758153c9fd008563f2f7412a5802ebdfad;hpb=686b45e12171dfde16576169814b80ac33b0157d;p=stockfish diff --git a/src/uci.cpp b/src/uci.cpp index b7127b75..2c07807c 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -68,7 +68,7 @@ namespace { return; pos.set(fen, Options["UCI_Chess960"], Threads.main()); - SetupStates = Search::StateStackPtr(new std::stack()); + SetupStates = Search::StateStackPtr(new std::stack); // Parse move list (if any) while (is >> token && (m = UCI::to_move(pos, token)) != MOVE_NONE) @@ -205,7 +205,7 @@ void UCI::loop(int argc, char* argv[]) { } while (token != "quit" && argc == 1); // Passed args have one-shot behaviour - Threads.wait_for_think_finished(); // Cannot quit whilst the search is running + Threads.main()->join(); // Cannot quit whilst the search is running }