mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 16:26:00 +01:00
4a42344e97
* style: apply clang-format * ci: add new clang-format job to CI
29 lines
No EOL
891 B
C++
29 lines
No EOL
891 B
C++
#include "initHelpers.hpp"
|
|
|
|
bool Init::isSudo() {
|
|
return getuid() != geteuid() || !geteuid();
|
|
}
|
|
|
|
void Init::gainRealTime() {
|
|
const int minPrio = sched_get_priority_min(SCHED_RR);
|
|
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");
|
|
return;
|
|
}
|
|
|
|
pthread_atfork(NULL, NULL, []() {
|
|
const struct sched_param param = {.sched_priority = 0};
|
|
if (pthread_setschedparam(pthread_self(), SCHED_OTHER, ¶m))
|
|
Debug::log(WARN, "Failed to reset process scheduling strategy");
|
|
});
|
|
} |