Module thread

Module thread 

Source
Expand description

RTOS thread management for oveRTOS.

Thread wraps an RTOS task handle with RAII lifecycle management. Threads can be created from safe Rust fn() entry points via Thread::spawn, and are automatically destroyed when the Thread handle is dropped.

Structs§

MemStats
System heap statistics.
Thread
Handle to an OS thread.
ThreadInfo
Snapshot of a single thread’s info.
ThreadStats
Runtime statistics for a thread.

Enums§

ThreadState
Thread state, matching ove_thread_state_t.

Functions§

get_mem_stats
Query system heap statistics.
thread_list
List all threads in the system.