pub struct StatFlags { /* private fields */ }Expand description
Kernel flags for a process
See also the Stat::flags() method.
Implementations§
source§impl StatFlags
impl StatFlags
sourcepub const PF_EXITING: Self = _
pub const PF_EXITING: Self = _
Getting shut down
sourcepub const PF_EXITPIDONE: Self = _
pub const PF_EXITPIDONE: Self = _
PI exit done on shut down
sourcepub const PF_WQ_WORKER: Self = _
pub const PF_WQ_WORKER: Self = _
I’m a workqueue worker
sourcepub const PF_FORKNOEXEC: Self = _
pub const PF_FORKNOEXEC: Self = _
Forked but didn’t exec
sourcepub const PF_MCE_PROCESS: Self = _
pub const PF_MCE_PROCESS: Self = _
Process policy on mce errors;
sourcepub const PF_SUPERPRIV: Self = _
pub const PF_SUPERPRIV: Self = _
Used super-user privileges
sourcepub const PF_DUMPCORE: Self = _
pub const PF_DUMPCORE: Self = _
Dumped core
sourcepub const PF_SIGNALED: Self = _
pub const PF_SIGNALED: Self = _
Killed by a signal
sourcepub const PF_MEMALLOC: Self = _
pub const PF_MEMALLOC: Self = _
Allocating memory
sourcepub const PF_NPROC_EXCEEDED: Self = _
pub const PF_NPROC_EXCEEDED: Self = _
set_user() noticed that RLIMIT_NPROC was exceeded
sourcepub const PF_USED_MATH: Self = _
pub const PF_USED_MATH: Self = _
If unset the fpu must be initialized before use
sourcepub const PF_USED_ASYNC: Self = _
pub const PF_USED_ASYNC: Self = _
Used async_schedule*(), used by module init
sourcepub const PF_NOFREEZE: Self = _
pub const PF_NOFREEZE: Self = _
This thread should not be frozen
sourcepub const PF_MEMALLOC_NOFS: Self = _
pub const PF_MEMALLOC_NOFS: Self = _
All allocation requests will inherit GFP_NOFS
sourcepub const PF_MEMALLOC_NOIO: Self = _
pub const PF_MEMALLOC_NOIO: Self = _
All allocation requests will inherit GFP_NOIO
sourcepub const PF_LESS_THROTTLE: Self = _
pub const PF_LESS_THROTTLE: Self = _
Throttle me less: I clean memory
sourcepub const PF_KTHREAD: Self = _
pub const PF_KTHREAD: Self = _
I am a kernel thread
sourcepub const PF_RANDOMIZE: Self = _
pub const PF_RANDOMIZE: Self = _
Randomize virtual address space
sourcepub const PF_SWAPWRITE: Self = _
pub const PF_SWAPWRITE: Self = _
Allowed to write to swap
sourcepub const PF_MEMSTALL: Self = _
pub const PF_MEMSTALL: Self = _
Stalled due to lack of memory
sourcepub const PF_NO_SETAFFINITY: Self = _
pub const PF_NO_SETAFFINITY: Self = _
Userland is not allowed to meddle with cpus_allowed
sourcepub const PF_MCE_EARLY: Self = _
pub const PF_MCE_EARLY: Self = _
Early kill for mce process policy
sourcepub const PF_MEMALLOC_NOCMA: Self = _
pub const PF_MEMALLOC_NOCMA: Self = _
All allocation request will have _GFP_MOVABLE cleared
sourcepub const PF_MUTEX_TESTER: Self = _
pub const PF_MUTEX_TESTER: Self = _
Thread belongs to the rt mutex tester
sourcepub const PF_FREEZER_SKIP: Self = _
pub const PF_FREEZER_SKIP: Self = _
Freezer should not count it as freezable
sourcepub const PF_SUSPEND_TASK: Self = _
pub const PF_SUSPEND_TASK: Self = _
This thread called freeze_processes() and should not be frozen
sourcepub const fn from_bits(bits: u32) -> Option<Self>
pub const fn from_bits(bits: u32) -> Option<Self>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u32) -> Self
pub const fn from_bits_truncate(bits: u32) -> Self
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u32) -> Self
pub const unsafe fn from_bits_unchecked(bits: u32) -> Self
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
Safety
The caller of the bitflags! macro can chose to allow or
disallow extra bits for their bitflags type.
The caller of from_bits_unchecked() has to ensure that
all bits correspond to a defined flag or that extra bits
are valid for this bitflags type.
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Returns true if there are flags common to both self and other.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Returns true if all of the flags in other are contained within self.
sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Inserts or removes the specified flags depending on the passed value.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
Returns the intersection between the flags in self and
other.
Specifically, the returned set contains only the flags which are
present in both self and other.
This is equivalent to using the & operator (e.g.
ops::BitAnd), as in flags & other.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
Returns the union of between the flags in self and other.
Specifically, the returned set contains all flags which are
present in either self or other, including any which are
present in both (see Self::symmetric_difference if that
is undesirable).
This is equivalent to using the | operator (e.g.
ops::BitOr), as in flags | other.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
Returns the difference between the flags in self and other.
Specifically, the returned set contains all flags present in
self, except for the ones present in other.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other (and this syntax is also supported).
This is equivalent to using the - operator (e.g.
ops::Sub), as in flags - other.
sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
Returns the symmetric difference between the flags
in self and other.
Specifically, the returned set contains the flags present which
are present in self or other, but that are not present in
both. Equivalently, it contains the flags present in exactly
one of the sets self and other.
This is equivalent to using the ^ operator (e.g.
ops::BitXor), as in flags ^ other.
sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
Returns the complement of this set of flags.
Specifically, the returned set contains all the flags which are
not set in self, but which are allowed for this type.
Alternatively, it can be thought of as the set difference
between Self::all() and self (e.g. Self::all() - self)
This is equivalent to using the ! operator (e.g.
ops::Not), as in !flags.
Trait Implementations§
source§impl BitAndAssign<StatFlags> for StatFlags
impl BitAndAssign<StatFlags> for StatFlags
source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
Disables all flags disabled in the set.
source§impl BitOrAssign<StatFlags> for StatFlags
impl BitOrAssign<StatFlags> for StatFlags
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Adds the set of flags.
source§impl BitXorAssign<StatFlags> for StatFlags
impl BitXorAssign<StatFlags> for StatFlags
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
Toggles the set of flags.
source§impl Extend<StatFlags> for StatFlags
impl Extend<StatFlags> for StatFlags
source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)source§impl FromIterator<StatFlags> for StatFlags
impl FromIterator<StatFlags> for StatFlags
source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
source§impl Ord for StatFlags
impl Ord for StatFlags
source§impl PartialEq<StatFlags> for StatFlags
impl PartialEq<StatFlags> for StatFlags
source§impl PartialOrd<StatFlags> for StatFlags
impl PartialOrd<StatFlags> for StatFlags
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 moresource§impl SubAssign<StatFlags> for StatFlags
impl SubAssign<StatFlags> for StatFlags
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Disables all flags enabled in the set.