Struct esp_idf_sys::xTASK_STATUS
source · #[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,
}
Expand description
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 https://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§
source§impl Clone for xTASK_STATUS
impl Clone for xTASK_STATUS
source§fn clone(&self) -> xTASK_STATUS
fn clone(&self) -> xTASK_STATUS
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for xTASK_STATUS
impl Debug for xTASK_STATUS
source§impl Default for xTASK_STATUS
impl Default for xTASK_STATUS
impl Copy for xTASK_STATUS
Auto Trait Implementations§
impl Freeze for xTASK_STATUS
impl RefUnwindSafe for xTASK_STATUS
impl !Send for xTASK_STATUS
impl !Sync for xTASK_STATUS
impl Unpin for xTASK_STATUS
impl UnwindSafe for xTASK_STATUS
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)