Type Alias esp_idf_sys::TaskParameters_t

source ·
pub type TaskParameters_t = xTASK_PARAMETERS;

Aliased Type§

struct TaskParameters_t {
    pub pvTaskCode: Option<unsafe extern "C" fn(_: *mut c_void)>,
    pub pcName: *const i8,
    pub usStackDepth: u32,
    pub pvParameters: *mut c_void,
    pub uxPriority: u32,
    pub puxStackBuffer: *mut u8,
    pub xRegions: [xMEMORY_REGION; 1],
}

Fields§

§pvTaskCode: Option<unsafe extern "C" fn(_: *mut c_void)>§pcName: *const i8§usStackDepth: u32§pvParameters: *mut c_void§uxPriority: u32§puxStackBuffer: *mut u8§xRegions: [xMEMORY_REGION; 1]