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: AtomicUsize
Initialization status of this object. Most objects will start uninitialized and be initialized manually.