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>
9#include <sys/syscall.h>
25 if (::syscall(__NR_sched_setattr, pid, &attrs, 0) != 0) {
26 cosmos_throw (
ApiError(
"sched_setattr()"));
30int RealTimeSchedulerSettings::minPriority()
const {
31 auto ret = sched_get_priority_min(
static_cast<int>(m_policy));
34 cosmos_throw (
ApiError(
"sched_get_priority_min()"));
40int RealTimeSchedulerSettings::maxPriority()
const {
41 auto ret = sched_get_priority_max(
static_cast<int>(m_policy));
44 cosmos_throw (ApiError(
"sched_get_priority_max()"));
51 if (m_policy == SchedulerPolicy::INVALID) {
52 cosmos_throw (
UsageError(
"Tried to fill sched_attr for invalid policy"));
55 attr.
size =
sizeof(attr);
Specialized exception type used when system APIs fail.
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.
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.
virtual void fillStruct(struct sched_attr &attr) const =0
Fill the given low level sched_attr struct with the current settings.
void apply(ProcessID pid) const
Apply the current scheduler settings to the given process.
Exception type for logical usage errors within the application.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
uint32_t sched_policy
Policy (SCHED_*)
int32_t sched_nice
Nice value for OTHER, BATCH.
uint32_t size
Size of this structure.
uint32_t sched_priority
Static priority for FIFO, RR.