Enum procfs::ProcState[][src]

pub enum ProcState {
    Running,
    Sleeping,
    Waiting,
    Zombie,
    Stopped,
    Tracing,
    Dead,
    Wakekill,
    Waking,
    Parked,
}

Represents the state of a process.

Variants

Running (R)

Sleeping in an interruptible wait (S)

Waiting in uninterruptible disk sleep (D)

Zombie (Z)

Stopped (on a signal) (T)

Or before Linux 2.6.33, trace stopped

Tracing stop (t) (Linux 2.6.33 onward)

Dead (X)

Wakekill (K) (Linux 2.6.33 to 3.13 only)

Waking (W) (Linux 2.6.33 to 3.13 only)

Parked (P) (Linux 3.9 to 3.13 only)

Methods

impl ProcState
[src]

Trait Implementations

impl Debug for ProcState
[src]

Formats the value using the given formatter. Read more

impl Clone for ProcState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ProcState
[src]

impl Eq for ProcState
[src]

impl PartialEq for ProcState
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl FromStr for ProcState
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for ProcState

impl Sync for ProcState