pub type StaticMutex = StaticKernelObject<k_mutex>;Expand description
Aliased Type§
struct StaticMutex {
pub value: UnsafeCell<k_mutex>,
pub init: AtomicUsize,
}Fields§
§value: UnsafeCell<k_mutex>The underlying zephyr kernel object.
init: AtomicUsizeInitialization status of this object. Most objects will start uninitialized and be initialized manually.