X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=3dc0f274ba7d21a853bcfc11ad2948b3dbb537c1;hb=40a7ffd53fdcd63a7eeb1382e54a5bdcd455edb7;hp=14924bf2280662be82523e81e94d09a7136d1c16;hpb=093dd8fe88d278db6cd5c956a771a45a295e1de3;p=stockfish diff --git a/src/thread.h b/src/thread.h index 14924bf2..3dc0f274 100644 --- a/src/thread.h +++ b/src/thread.h @@ -66,9 +66,6 @@ struct SplitPoint { struct Thread { - - Thread() { memset(this, 0, sizeof(Thread)); } - SplitPoint *splitPoint; volatile int activeSplitPoints; uint64_t nodes; @@ -78,7 +75,7 @@ struct Thread { volatile bool idle; volatile bool sleeping; volatile bool workIsWaiting; - volatile bool printCurrentLine; + volatile bool printCurrentLineRequest; unsigned char pad[64]; // set some distance among local data for each thread };