![]() |
Imt.Base C++ API V4.1.1.0
|
Provides the parameters required to setup the scheduling of a thread. More...
#include <Imt.Base.OS.Linux/inc/Imt.Base.OS.Linux/ThreadSchedulingParams.h>
Public Member Functions | |
constexpr | ThreadSchedulingParams (ThreadSchedulingPolicy policy, int32_t priority) noexcept |
Constructor. | |
constexpr | ThreadSchedulingParams () noexcept |
Constructor Sets the policy to ThreadSchedulingPolicy::OTHER and priority to 0. | |
constexpr ThreadSchedulingPolicy | getPolicy () const noexcept |
Gets the scheduling policy. | |
constexpr int32_t | getPriority () const noexcept |
Gets the scheduling priority. | |
Provides the parameters required to setup the scheduling of a thread.
Definition at line 17 of file ThreadSchedulingParams.h.
|
inlineconstexprnoexcept |
Constructor.
policy | The scheduling policy |
priority | The thread priority. Corresponds to the realtime priority in case of SchedulingPolicy::FIFO or SchedulingPolicy::ROUND_ROBIN or the nice value in case of SchedulingPolicy::OTHER. See also "man sched 7". |
Definition at line 28 of file ThreadSchedulingParams.h.
|
inlineconstexprnoexcept |
Constructor Sets the policy to ThreadSchedulingPolicy::OTHER and priority to 0.
Definition at line 37 of file ThreadSchedulingParams.h.
|
inlineconstexprnoexcept |
Gets the scheduling policy.
Definition at line 45 of file ThreadSchedulingParams.h.
|
inlineconstexprnoexcept |
Gets the scheduling priority.
Definition at line 53 of file ThreadSchedulingParams.h.