linux_rust_bindings/time/
time_x86.rs

1/* automatically generated by rust-bindgen 0.69.1 */
2
3pub const CLOCK_REALTIME: i32 = 0;
4pub const CLOCK_MONOTONIC: i32 = 1;
5pub const CLOCK_PROCESS_CPUTIME_ID: i32 = 2;
6pub const CLOCK_THREAD_CPUTIME_ID: i32 = 3;
7pub const CLOCK_MONOTONIC_RAW: i32 = 4;
8pub const CLOCK_REALTIME_COARSE: i32 = 5;
9pub const CLOCK_MONOTONIC_COARSE: i32 = 6;
10pub const CLOCK_BOOTTIME: i32 = 7;
11pub const CLOCK_REALTIME_ALARM: i32 = 8;
12pub const CLOCK_BOOTTIME_ALARM: i32 = 9;
13pub const CLOCK_SGI_CYCLE: i32 = 10;
14pub const CLOCK_TAI: i32 = 11;
15pub const CLOCKS_MASK: i32 = 1;
16pub const CLOCKS_MONO: i32 = 1;
17pub type __kernel_time64_t = ::core::ffi::c_longlong;
18#[repr(C)]
19#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
20pub struct __kernel_timespec {
21    pub tv_sec: __kernel_time64_t,
22    pub tv_nsec: ::core::ffi::c_longlong,
23}