Type Alias ThreadHandle
Source pub type ThreadHandle = *const c_void;
Expand description
FreeRTOS opaque handle types for OS primitives.
These handles are used to reference FreeRTOS objects.
§Examples
ⓘuse osal_rs::os::types::*;
let handle: ThreadHandle = std::ptr::null_mut();
Opaque handle to a FreeRTOS task/thread