Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
hoholee12 committed Jul 23, 2023
1 parent e5c1fea commit cf785e2
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions Utilities/Thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3028,9 +3028,9 @@ void thread_ctrl::set_native_priority(int priority)
{
sig_log.error("SetThreadPriority() failed: %s", fmt::win_error{GetLastError(), nullptr});
}
#else
#elif defined(__linux__)
// available niceness for nonroot: 0~19
int linuxprio = 0;
int linuxprio = 9;
id_t threadpid = gettid();

if (priority > 0)
Expand All @@ -3045,10 +3045,21 @@ void thread_ctrl::set_native_priority(int priority)
{
sig_log.error("setpriority(%d, %d) failed: %d", threadpid, linuxprio, err);
}
else
{
sig_log.success("setpriority(%d, %d) successful.", threadpid, linuxprio);
}
}
#else
int policy;
struct sched_param param;

pthread_getschedparam(pthread_self(), &policy, &param);

if (priority > 0)
param.sched_priority = sched_get_priority_max(policy);
if (priority < 0)
param.sched_priority = sched_get_priority_min(policy);

if (int err = pthread_setschedparam(pthread_self(), policy, &param))
{
sig_log.error("pthread_setschedparam() failed: %d", err);
}
#endif
}
Expand Down

0 comments on commit cf785e2

Please sign in to comment.