uapi 0.2.13

Wrappers for OS APIs on UNIX-like platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use uapi::*;

cfg_if::cfg_if! {
    if #[cfg(target_os = "linux")] {
        mod linux;
    }
}

#[test]
fn clock() {
    let mut ts = pod_zeroed();
    clock_gettime(c::CLOCK_MONOTONIC, &mut ts).unwrap();
    clock_getres(c::CLOCK_MONOTONIC, &mut ts).unwrap();
}