1 2 3 4 5 6 7 8
use crate::bindings::rt_tick_count; pub type Utick = core::ffi::c_ulong; #[inline] pub fn count() -> Utick { unsafe { rt_tick_count() } }