pub fn remove_timer_mappings() -> Result<(), Error>
Expand description

Unmaps the vdso and vvar mappings.

Examples found in repository?
examples/remove_timers.rs (line 4)
3
4
5
6
7
fn main() {
    if let Err(e) = remove_timer_mappings() {
        eprintln!("Unable to remove timers. Error: {}", e);
    }
}