]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Further simplify unstoppable (#938)
[stockfish] / src / misc.h
index a2307fe779ad7fda3463031fe6bdbbb3223735f3..36185b87e1710d05f6c1ff144b723bdcac49acdc 100644 (file)
@@ -97,4 +97,15 @@ public:
   { return T(rand64() & rand64() & rand64()); }
 };
 
+
+/// Under Windows it is not possible for a process to run on more than one
+/// logical processor group. This usually means to be limited to use max 64
+/// cores. To overcome this, some special platform specific API should be
+/// called to set group affinity for each thread. Original code from Texel by
+/// Peter Ă–sterlund.
+
+namespace WinProcGroup {
+  void bindThisThread(size_t idx);
+}
+
 #endif // #ifndef MISC_H_INCLUDED