pub trait RtosTraceOSCallbacks {
    fn task_list();
    fn time() -> u64;
}
Expand description

Callbacks to the OS invoked by the tracing system. This trait can be implemented in the RTOS.

Required Methods

Send a list of all tasks to the tracing system.

Get system time in microseconds.

Implementors