pub fn remove_timer_mappings() -> Result<(), Error>
Unmaps the vdso and vvar mappings.
3 4 5 6 7
fn main() { if let Err(e) = remove_timer_mappings() { eprintln!("Unable to remove timers. Error: {}", e); } }