libcosmos
Linux C++ System Programming Library
|
Base class for changing process scheduling options. More...
#include <Scheduler.hxx>
Public Member Functions | |
SchedulerSettings (const SchedulerPolicy policy) | |
SchedulerPolicy | policy () const |
void | apply (ProcessID pid) const |
Apply the current scheduler settings to the given process. | |
Protected Member Functions | |
virtual void | fillStruct (struct sched_attr &attr) const =0 |
Fill the given low level sched_attr struct with the current settings. | |
Protected Attributes | |
SchedulerPolicy | m_policy = SchedulerPolicy::INVALID |
Base class for changing process scheduling options.
Specializations of this type can be used to create child processes with adjusted scheduling settings or to adjust the scheduling settings or existing processes.
Definition at line 36 of file Scheduler.hxx.
|
inline |
Definition at line 39 of file Scheduler.hxx.
|
inlineexplicit |
Definition at line 41 of file Scheduler.hxx.
void cosmos::SchedulerSettings::apply | ( | ProcessID | pid | ) | const |
Apply the current scheduler settings to the given process.
If the operation fails then an ApiError is thrown.
If pid
is zero then the settings are applied to the calling process/thread.
Definition at line 15 of file Scheduler.cxx.
|
protectedpure virtual |
Fill the given low level sched_attr struct with the current settings.
Implemented in cosmos::OtherSchedulerSettings, and cosmos::RealTimeSchedulerSettings.
Definition at line 50 of file Scheduler.cxx.
|
inline |
Definition at line 45 of file Scheduler.hxx.
|
protected |
Definition at line 63 of file Scheduler.hxx.