pub enum NormalThreadSchedulePolicy {
Other,
}Expand description
Normal (non-realtime) schedule policies
For these schedule policies, niceness
is used.
Variants§
Other
The standard round-robin time-sharing policy, also sometimes referred to as “Normal”.
SCHED_OTHER can be used at only static priority 0 (i.e., threads under real-time policies
always have priority over SCHED_OTHER processes). SCHED_OTHER is the standard Linux
time-sharing scheduler that is intended for all threads that do not require the special
real-time mechanisms.
The thread to run is chosen from the static priority 0 list based on a dynamic priority that is determined only inside this list. The dynamic priority is based on the nice value (see below) and is increased for each time quantum the thread is ready to run, but denied to run by the scheduler.
This ensures fair progress among all SCHED_OTHER threads.
In the Linux kernel source code, the SCHED_OTHER policy is actually named SCHED_NORMAL.
Trait Implementations§
source§impl Clone for NormalThreadSchedulePolicy
impl Clone for NormalThreadSchedulePolicy
source§fn clone(&self) -> NormalThreadSchedulePolicy
fn clone(&self) -> NormalThreadSchedulePolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NormalThreadSchedulePolicy
impl Debug for NormalThreadSchedulePolicy
source§impl Hash for NormalThreadSchedulePolicy
impl Hash for NormalThreadSchedulePolicy
source§impl Ord for NormalThreadSchedulePolicy
impl Ord for NormalThreadSchedulePolicy
source§fn cmp(&self, other: &NormalThreadSchedulePolicy) -> Ordering
fn cmp(&self, other: &NormalThreadSchedulePolicy) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for NormalThreadSchedulePolicy
impl PartialEq for NormalThreadSchedulePolicy
source§fn eq(&self, other: &NormalThreadSchedulePolicy) -> bool
fn eq(&self, other: &NormalThreadSchedulePolicy) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialOrd for NormalThreadSchedulePolicy
impl PartialOrd for NormalThreadSchedulePolicy
source§fn partial_cmp(&self, other: &NormalThreadSchedulePolicy) -> Option<Ordering>
fn partial_cmp(&self, other: &NormalThreadSchedulePolicy) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read more