Trait slos_hal::SystemKmainHooks[][src]

pub trait SystemKmainHooks {
    fn hook_kmain_loop_head(&mut self) { ... }
fn hook_kmain_loop_inner_part(&mut self) { ... } }
Expand description

Optional kmain hook methods

Provided methods

kmain loop head hook

This is called at the beginning of every iteration of the kmain main loop.

kmain inner partial loop hook

This is called after each function in the KMAIN_LOOP_PARTIALS collection.

Implementors