#[unsafe(no_mangle)]pub unsafe extern "C-unwind" fn timer_new(
    task: *const TaskRef,
) -> *mut TimerExpand description
Create a new Timer that synchronously executes task on expiration.
ยงSafety
task must be dereferenceable, and must not call mutable methods of
the enclosing Timer; if it needs to do so it should schedule a new
task to do so.