10#include <cosmos/dso_export.h>
11#include <cosmos/proc/types.hxx>
20enum class SchedulerPolicy :
int {
22 ROUND_ROBIN = SCHED_RR,
23 DEADLINE = SCHED_DEADLINE,
45 SchedulerPolicy policy()
const {
return m_policy; }
59 virtual void fillStruct(
struct sched_attr &attr)
const = 0;
63 SchedulerPolicy m_policy = SchedulerPolicy::INVALID;
76 static constexpr int minNiceValue() {
return -20; }
77 static constexpr int maxNiceValue() {
return 19; }
101 int niceValue()
const {
return m_nice_prio; }
105 void fillStruct(
struct sched_attr &attr)
const override;
112 int m_nice_prio = INVALID_NICE_PRIO;
133 void setPriority(
const int priority) {
134 m_priority = priority;
137 int priority()
const {
return m_priority; }
139 int minPriority()
const;
140 int maxPriority()
const;
144 void fillStruct(
struct sched_attr &attr)
const override;
186using SchedulerSettingsVariant = std::variant<
FIFO Scheduling Policy Settings.
"OTHER" Scheduling Policy Settings.
static const int INVALID_NICE_PRIO
A constant denoting an invalid nice value.
void setNiceValue(int value)
Sets the nice priority for the child process.
Base class for realtime scheduling policies.
Round Robin Scheduling Policy Settings.
Base class for changing process scheduling options.