mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-12-22 15:58:53 +00:00
benchmark: affinity cast for mingw (#96)
This commit is contained in:
parent
89aba80925
commit
41401797c9
@ -64,7 +64,7 @@ set_thread_affinity(std::thread::native_handle_type thread,
|
|||||||
rc = thread_policy_set(mach_thread, THREAD_AFFINITY_POLICY,
|
rc = thread_policy_set(mach_thread, THREAD_AFFINITY_POLICY,
|
||||||
(thread_policy_t)&policy, 1);
|
(thread_policy_t)&policy, 1);
|
||||||
#elif defined(_WIN32) || defined(__CYGWIN__)
|
#elif defined(_WIN32) || defined(__CYGWIN__)
|
||||||
rc = SetThreadAffinityMask(thread, 1ULL << cpuid) == 0 ? -2 : 0;
|
rc = SetThreadAffinityMask(static_cast<HANDLE>(thread), 1ULL << cpuid) == 0 ? -2 : 0;
|
||||||
#else
|
#else
|
||||||
cpu_set_t cs;
|
cpu_set_t cs;
|
||||||
CPU_ZERO(&cs);
|
CPU_ZERO(&cs);
|
||||||
|
Loading…
Reference in New Issue
Block a user