[][src]Struct esp_idf_sys::xTASK_STATUS

#[repr(C)]
pub struct xTASK_STATUS {
    pub xHandle: TaskHandle_t,
    pub pcTaskName: *const c_char,
    pub xTaskNumber: UBaseType_t,
    pub eCurrentState: eTaskState,
    pub uxCurrentPriority: UBaseType_t,
    pub uxBasePriority: UBaseType_t,
    pub ulRunTimeCounter: u32,
    pub pxStackBase: *mut StackType_t,
    pub usStackHighWaterMark: u32,
}

Used with the uxTaskGetSystemState() function to return the state of each task in the system.

Fields

xHandle: TaskHandle_t

< The handle of the task to which the rest of the information in the structure relates.

pcTaskName: *const c_char

< A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated!

xTaskNumber: UBaseType_t

< A number unique to the task.

eCurrentState: eTaskState

< The state in which the task existed when the structure was populated.

uxCurrentPriority: UBaseType_t

< The priority at which the task was running (may be inherited) when the structure was populated.

uxBasePriority: UBaseType_t

< The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h.

ulRunTimeCounter: u32

< The total run time allocated to the task so far, as defined by the run time stats clock. See http://www.freertos.org/rtos-run-time-stats.html. Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h.

pxStackBase: *mut StackType_t

< Points to the lowest address of the task's stack area.

usStackHighWaterMark: u32

< The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack.

Trait Implementations

impl Debug for xTASK_STATUS[src]

impl Copy for xTASK_STATUS[src]

impl Clone for xTASK_STATUS[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]