rt/rust/src/tick.rs

8 lines
134 B
Rust

use crate::bindings::rt_tick_count;
pub type Utick = core::ffi::c_ulong;
pub fn count() -> Utick {
unsafe { rt_tick_count() }
}