summaryrefslogtreecommitdiff
path: root/platform/default/thread.cpp
blob: 3ef32579239c5bd8f74f4f462ab34648e44cfd95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <mbgl/platform/platform.hpp>

#include <mbgl/platform/log.hpp>

#include <pthread.h>
#ifdef __linux__
#include <linux/sched.h>
#endif
#include <sched.h>

namespace mbgl {
namespace platform {

void makeThreadLowPriority() {
#ifdef SCHED_IDLE
    struct sched_param param;
    param.sched_priority = 0;
    int status = sched_setscheduler(0, SCHED_IDLE, &param);
    if (status != 0) {
        Log::Warning(Event::General, "Couldn't set thread scheduling policy");
    }
#else
#pragma message("Building without thread priority control")
#endif
}

} // namespace platform
} // namespace mbgl