cpu affinity fixes in performance tests for FreeBSD

This commit is contained in:
fluffypony 2014-09-11 11:42:59 +02:00
parent afc61dda45
commit a40d5c1847

View file

@ -40,7 +40,7 @@
void set_process_affinity(int core)
{
#if defined (__APPLE__)
#if defined (__APPLE__) || defined(__FreeBSD__)
return;
#elif defined(BOOST_WINDOWS)
DWORD_PTR mask = 1;
@ -62,7 +62,7 @@ void set_process_affinity(int core)
void set_thread_high_priority()
{
#if defined(__APPLE__)
#if defined(__APPLE__) || defined(__FreeBSD__)
return;
#elif defined(BOOST_WINDOWS)
::SetPriorityClass(::GetCurrentProcess(), HIGH_PRIORITY_CLASS);