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