libcosmos
Linux C++ System Programming Library
|
"OTHER" Scheduling Policy Settings. More...
#include <Scheduler.hxx>
Public Member Functions | |
void | setNiceValue (int value) |
Sets the nice priority for the child process. | |
int | niceValue () const |
![]() | |
SchedulerSettings (const SchedulerPolicy policy) | |
SchedulerPolicy | policy () const |
void | apply (ProcessID pid) const |
Apply the current scheduler settings to the given process. | |
Static Public Member Functions | |
static constexpr int | minNiceValue () |
static constexpr int | maxNiceValue () |
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_nice_prio = INVALID_NICE_PRIO |
The nice priority to apply to the child process, if any. | |
![]() | |
SchedulerPolicy | m_policy = SchedulerPolicy::INVALID |
Static Protected Attributes | |
static const int | INVALID_NICE_PRIO = OtherSchedulerSettings::maxNiceValue() + 1 |
A constant denoting an invalid nice value. | |
"OTHER" Scheduling Policy Settings.
Definition at line 67 of file Scheduler.hxx.
|
inline |
Definition at line 71 of file Scheduler.hxx.
|
overrideprotectedvirtual |
Fill the given low level sched_attr struct with the current settings.
Implements cosmos::SchedulerSettings.
Definition at line 59 of file Scheduler.cxx.
|
inlinestaticconstexpr |
Definition at line 77 of file Scheduler.hxx.
|
inlinestaticconstexpr |
Definition at line 76 of file Scheduler.hxx.
|
inline |
Definition at line 101 of file Scheduler.hxx.
|
inline |
Sets the nice priority for the child process.
The nice value provides some basic CPU time prioritization for processes. It doesn't offer any hard guarantees but provides some general tendency for preferring or disregarding a process when it comes to scheduling CPU time.
Currently this setting only affects newly created child processes, not one that is already running.
Lower nice values mean more CPU time resources for the process. See minNiceValue() and maxNiceValue() for the lower and upper bound of this value.
Note that on Linux this setting affects only a single thread as opposed to the complete process as POSIX mandates. Since this call currently only supports this setting for newly created child processes this aspect doesn't matter much, however, because the nice value will be inherited by child threads and processes alike.
Definition at line 99 of file Scheduler.hxx.
|
staticconstexprprotected |
A constant denoting an invalid nice value.
Definition at line 110 of file Scheduler.hxx.
|
protected |
The nice priority to apply to the child process, if any.
Definition at line 112 of file Scheduler.hxx.