X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc.cpp;h=5572bc91c8ed57c0d15367e7e8fc24da57453e5e;hb=4a0db9ea3c34d7663a039c40ce810ba9cb743cca;hp=e6a29af78366684a28a3056e4f5a8f4c01964e66;hpb=06a853eb9c5173c30b31e75d0828c29dd65ebca4;p=stockfish diff --git a/src/misc.cpp b/src/misc.cpp index e6a29af7..5572bc91 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -224,11 +224,11 @@ void bindThisThread(size_t) {} #else -/// get_group() retrieves logical processor information using Windows specific +/// best_group() retrieves logical processor information using Windows specific /// API and returns the best group id for the thread with index idx. Original /// code from Texel by Peter Österlund. -int get_group(size_t idx) { +int best_group(size_t idx) { int threads = 0; int nodes = 0; @@ -299,7 +299,7 @@ int get_group(size_t idx) { void bindThisThread(size_t idx) { // Use only local variables to be thread-safe - int group = get_group(idx); + int group = best_group(idx); if (group == -1) return;