]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Remove a wrong FIXME
[stockfish] / src / thread.h
index 6fda35f8209c390a25dda1ca70fece81b5ba2d46..0a28f39bf5dc2f9bbf328acf12192eb5d7b1fe70 100644 (file)
@@ -54,7 +54,6 @@ struct SplitPoint {
   Depth depth;
   bool pvNode, mateThreat;
   Value beta;
-  int ply;
   SearchStack sstack[MAX_THREADS][PLY_MAX_PLUS_2];
 
   // Const pointers to shared data
@@ -83,7 +82,7 @@ enum ThreadState
 };
 
 struct Thread {
-  SplitPoint* splitPoint;
+  SplitPoint* volatile splitPoint;
   volatile int activeSplitPoints;
   uint64_t nodes;
   uint64_t betaCutOffs[2];