libcosmos
Linux C++ System Programming Library
|
Base class for realtime scheduling policies. More...
#include <Scheduler.hxx>
Public Member Functions | |
RealTimeSchedulerSettings (const SchedulerPolicy policy) | |
void | setPriority (const int priority) |
int | priority () const |
int | minPriority () const |
int | maxPriority () const |
![]() | |
SchedulerSettings (const SchedulerPolicy policy) | |
SchedulerPolicy | policy () const |
void | apply (ProcessID pid) const |
Apply the current scheduler settings to the given process. | |
Protected Member Functions | |
void | fillStruct (struct sched_attr &attr) const override |
Fill the given low level sched_attr struct with the current settings. | |
![]() |
Protected Attributes | |
int | m_priority = 0 |
![]() | |
SchedulerPolicy | m_policy = SchedulerPolicy::INVALID |
Base class for realtime scheduling policies.
Realtime scheduling uses priorities between an integer min priority and an integer max priority. These boundaries are determines during runtime but are currently set on Linux to 1 .. 99. Higher values mean higher priorities.
A thread with realtime scheduling always has a higher priority than threads with non-realtime scheduling.
Definition at line 125 of file Scheduler.hxx.
|
inlineexplicit |
Definition at line 129 of file Scheduler.hxx.
|
overrideprotectedvirtual |
Fill the given low level sched_attr struct with the current settings.
Implements cosmos::SchedulerSettings.
Definition at line 64 of file Scheduler.cxx.
int cosmos::RealTimeSchedulerSettings::maxPriority | ( | ) | const |
Definition at line 40 of file Scheduler.cxx.
int cosmos::RealTimeSchedulerSettings::minPriority | ( | ) | const |
Definition at line 30 of file Scheduler.cxx.
|
inline |
Definition at line 137 of file Scheduler.hxx.
|
inline |
Definition at line 133 of file Scheduler.hxx.
|
protected |
Definition at line 148 of file Scheduler.hxx.