parent
76c6e09e39
commit
f6b340cc19
2 changed files with 11 additions and 2 deletions
|
|
@ -6,7 +6,15 @@ bool Init::isSudo() {
|
|||
|
||||
void Init::gainRealTime() {
|
||||
const int minPrio = sched_get_priority_min(SCHED_RR);
|
||||
const struct sched_param param = {.sched_priority = minPrio};
|
||||
int old_policy;
|
||||
struct sched_param param;
|
||||
|
||||
if (pthread_getschedparam(pthread_self(), &old_policy, ¶m)) {
|
||||
Debug::log(WARN, "Failed to get old pthread scheduling priority");
|
||||
return;
|
||||
}
|
||||
|
||||
param.sched_priority = minPrio;
|
||||
|
||||
if (pthread_setschedparam(pthread_self(), SCHED_RR, ¶m)) {
|
||||
Debug::log(WARN, "Failed to change process scheduling strategy");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue