]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Remove questionable gcc flags from profile-build
[stockfish] / src / thread.h
index 0f117c2d2a7426040424abce254b5ee57ed67618..dc0c51c28d5c2401e415ccde5ce361b43061a3b9 100644 (file)
@@ -60,15 +60,13 @@ public:
   Material::Table materialTable;
   Endgames endgames;
   size_t idx, PVIdx;
-  int maxPly, callsCnt;
-  std::atomic<uint64_t> tbHits;
-  std::atomic<uint64_t> nodes;
+  int maxPly;
+  std::atomic<uint64_t> nodes, tbHits;
 
   Position rootPos;
   Search::RootMoves rootMoves;
-  std::atomic<Depth> rootDepth;
+  Depth rootDepth;
   Depth completedDepth;
-  std::atomic_bool resetCalls;
   CounterMoveStat counterMoves;
   ButterflyHistory history;
   CounterMoveHistoryStat counterMoveHistory;
@@ -79,10 +77,12 @@ public:
 
 struct MainThread : public Thread {
   virtual void search();
+  void check_time();
 
   bool easyMovePlayed, failedLow;
   double bestMoveChanges;
   Value previousScore;
+  int callsCnt = 0;
 };