libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Scheduler.cxx
1// Cosmos
2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/error/UsageError.hxx>
4#include <cosmos/private/Scheduler.hxx>
5#include <cosmos/proc/Scheduler.hxx>
6#include <cosmos/memory.hxx>
7
8// Linux
9#include <sys/syscall.h>
10
11namespace cosmos {
12
13constexpr int OtherSchedulerSettings::INVALID_NICE_PRIO = OtherSchedulerSettings::maxNiceValue() + 1;
14
16 struct sched_attr attrs;
17 this->fillStruct(attrs);
18
19 // not only the data structure is not commonly defined in the C
20 // headers, also the system call is not available. So we need to do it
21 // ourselves.
22 //
23 // the POSIX interface sched_setscheduler is probably available, but
24 // only supports the priority property and FIFO/RR, nothing else.
25 if (::syscall(__NR_sched_setattr, pid, &attrs, 0) != 0) {
26 cosmos_throw (ApiError("sched_setattr()"));
27 }
28}
29
30int RealTimeSchedulerSettings::minPriority() const {
31 auto ret = sched_get_priority_min(static_cast<int>(m_policy));
32
33 if (ret == -1) {
34 cosmos_throw (ApiError("sched_get_priority_min()"));
35 }
36
37 return ret;
38}
39
40int RealTimeSchedulerSettings::maxPriority() const {
41 auto ret = sched_get_priority_max(static_cast<int>(m_policy));
42
43 if (ret == -1) {
44 cosmos_throw (ApiError("sched_get_priority_max()"));
45 }
46
47 return ret;
48}
49
51 if (m_policy == SchedulerPolicy::INVALID) {
52 cosmos_throw (UsageError("Tried to fill sched_attr for invalid policy"));
53 }
54 zero_object(attr);
55 attr.size = sizeof(attr);
56 attr.sched_policy = static_cast<int>(m_policy);
57}
58
63
68
69} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
static const int INVALID_NICE_PRIO
A constant denoting an invalid nice value.
void fillStruct(struct sched_attr &attr) const override
Fill the given low level sched_attr struct with the current settings.
Definition Scheduler.cxx:59
int m_nice_prio
The nice priority to apply to the child process, if any.
void fillStruct(struct sched_attr &attr) const override
Fill the given low level sched_attr struct with the current settings.
Definition Scheduler.cxx:64
virtual void fillStruct(struct sched_attr &attr) const =0
Fill the given low level sched_attr struct with the current settings.
Definition Scheduler.cxx:50
void apply(ProcessID pid) const
Apply the current scheduler settings to the given process.
Definition Scheduler.cxx:15
Exception type for logical usage errors within the application.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23
ProcessID
Definition types.hxx:25
uint32_t sched_policy
Policy (SCHED_*)
Definition Scheduler.hxx:16
int32_t sched_nice
Nice value for OTHER, BATCH.
Definition Scheduler.hxx:19
uint32_t size
Size of this structure.
Definition Scheduler.hxx:14
uint32_t sched_priority
Static priority for FIFO, RR.
Definition Scheduler.hxx:21