X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=a5523fc16ee3c00c01f861b679c2f199ffec57d5;hp=4d290d7cd7317c4df3f9433e05d6591240db7854;hb=de02768af7b37c903e3227b85ec4d81ec79ba69a;hpb=ca677526452823d1fe89543762edb66684e7bdc7 diff --git a/src/thread.cpp b/src/thread.cpp index 4d290d7c..a5523fc1 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -2,7 +2,7 @@ Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad - Copyright (C) 2015-2016 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad + Copyright (C) 2015-2017 Marco Costalba, Joona Kiiski, Gary Linscott, 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 @@ -35,9 +35,8 @@ ThreadPool Threads; // Global object Thread::Thread() { resetCalls = exit = false; - maxPly = callsCnt = tbHits = 0; - history.clear(); - counterMoves.clear(); + maxPly = callsCnt = 0; + tbHits = 0; idx = Threads.size(); // Start from 0 std::unique_lock lk(mutex); @@ -95,6 +94,8 @@ void Thread::start_searching(bool resume) { void Thread::idle_loop() { + WinProcGroup::bindThisThread(idx); + while (!exit) { std::unique_lock lk(mutex); @@ -122,7 +123,7 @@ void Thread::idle_loop() { void ThreadPool::init() { - push_back(new MainThread); + push_back(new MainThread()); read_uci_options(); } @@ -149,7 +150,7 @@ void ThreadPool::read_uci_options() { assert(requested > 0); while (size() < requested) - push_back(new Thread); + push_back(new Thread()); while (size() > requested) delete back(), pop_back(); @@ -158,7 +159,7 @@ void ThreadPool::read_uci_options() { /// ThreadPool::nodes_searched() returns the number of nodes searched -uint64_t ThreadPool::nodes_searched() { +uint64_t ThreadPool::nodes_searched() const { uint64_t nodes = 0; for (Thread* th : *this) @@ -169,7 +170,7 @@ uint64_t ThreadPool::nodes_searched() { /// ThreadPool::tb_hits() returns the number of TB hits -uint64_t ThreadPool::tb_hits() { +uint64_t ThreadPool::tb_hits() const { uint64_t hits = 0; for (Thread* th : *this) @@ -210,6 +211,7 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states, for (Thread* th : Threads) { th->maxPly = 0; + th->tbHits = 0; th->rootDepth = DEPTH_ZERO; th->rootMoves = rootMoves; th->rootPos.set(pos.fen(), pos.is_chess960(), &setupStates->back(), th);