Disable thread affinity on FreeBSD and Android

This commit is contained in:
tevador 2019-12-01 20:41:20 +01:00
parent 70d4b0f2f1
commit aa19c5b9b6
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ set_thread_affinity(std::thread::native_handle_type thread,
(thread_policy_t)&policy, 1);
#elif defined(_WIN32) || defined(__CYGWIN__)
rc = SetThreadAffinityMask(reinterpret_cast<HANDLE>(thread), 1ULL << cpuid) == 0 ? -2 : 0;
#elif !defined(__OpenBSD__)
#elif !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__ANDROID__)
cpu_set_t cs;
CPU_ZERO(&cs);
CPU_SET(cpuid, &cs);