esp_idf_hal::sys

Type Alias TaskIterator_t

Source
pub type TaskIterator_t = TaskIterator;
Expand description

@brief Task Snapshot iterator

Used in xTaskGetNext(). Must be zero/null initialized on the first call.

Aliased Type§

struct TaskIterator_t {
    pub uxCurrentListIndex: u32,
    pub pxNextListItem: *mut xLIST_ITEM,
    pub pxTaskHandle: *mut tskTaskControlBlock,
}

Fields§

§uxCurrentListIndex: u32

< Current task list index being traversed.

§pxNextListItem: *mut xLIST_ITEM

< Next task list item will being traversed.

§pxTaskHandle: *mut tskTaskControlBlock

< Current task handle being traversed.

Trait Implementations

Source§

impl Clone for TaskIterator

Source§

fn clone(&self) -> TaskIterator

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TaskIterator

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for TaskIterator

Source§

fn default() -> TaskIterator

Returns the “default value” for a type. Read more
Source§

impl Copy for TaskIterator