satdump/src-core/common/thread_priority.cpp

19 lines
492 B
C++
Raw Normal View History

#include "thread_priority.h"
#include "logger.h"
#ifdef _WIN32
#include <windows.h>
#endif
void setThreadPriority(std::thread &th, int priority)
{
#ifdef _WIN32
if (SetThreadPriority(th.native_handle(), priority))
logger->error("Could not set thread priority!");
#else
sched_param sch_params;
sch_params.sched_priority = priority;
if (pthread_setschedparam(th.native_handle(), SCHED_RR, &sch_params))
logger->error("Could not set thread priority!");
#endif
}