libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::RealTimeSchedulerSettings Class Reference

Base class for realtime scheduling policies. More...

#include <Scheduler.hxx>

+ Inheritance diagram for cosmos::RealTimeSchedulerSettings:

Public Member Functions

 RealTimeSchedulerSettings (const SchedulerPolicy policy)
 
void setPriority (const int priority)
 
int priority () const
 
int minPriority () const
 
int maxPriority () const
 
- Public Member Functions inherited from cosmos::SchedulerSettings
 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 Member Functions inherited from cosmos::SchedulerSettings

Protected Attributes

int m_priority = 0
 
- Protected Attributes inherited from cosmos::SchedulerSettings
SchedulerPolicy m_policy = SchedulerPolicy::INVALID
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ RealTimeSchedulerSettings()

cosmos::RealTimeSchedulerSettings::RealTimeSchedulerSettings ( const SchedulerPolicy policy)
inlineexplicit

Definition at line 129 of file Scheduler.hxx.

129 :
130 SchedulerSettings{policy}
131 {}

Member Function Documentation

◆ fillStruct()

void cosmos::RealTimeSchedulerSettings::fillStruct ( struct sched_attr & attr) const
overrideprotectedvirtual

Fill the given low level sched_attr struct with the current settings.

Implements cosmos::SchedulerSettings.

Definition at line 64 of file Scheduler.cxx.

64 {
66 attr.sched_priority = m_priority;
67}
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

◆ maxPriority()

int cosmos::RealTimeSchedulerSettings::maxPriority ( ) const

Definition at line 40 of file Scheduler.cxx.

40 {
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}

◆ minPriority()

int cosmos::RealTimeSchedulerSettings::minPriority ( ) const

Definition at line 30 of file Scheduler.cxx.

30 {
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}

◆ priority()

int cosmos::RealTimeSchedulerSettings::priority ( ) const
inline

Definition at line 137 of file Scheduler.hxx.

137{ return m_priority; }

◆ setPriority()

void cosmos::RealTimeSchedulerSettings::setPriority ( const int priority)
inline

Definition at line 133 of file Scheduler.hxx.

133 {
134 m_priority = priority;
135 }

Member Data Documentation

◆ m_priority

int cosmos::RealTimeSchedulerSettings::m_priority = 0
protected

Definition at line 148 of file Scheduler.hxx.


The documentation for this class was generated from the following files: