linux-rust-bindings 0.1.3

Rust structs for Linux kernel structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* automatically generated by rust-bindgen 0.69.1 */

pub const EPOLL_CLOEXEC: i32 = 524288;
pub const EPOLL_CTL_ADD: i32 = 1;
pub const EPOLL_CTL_DEL: i32 = 2;
pub const EPOLL_CTL_MOD: i32 = 3;
pub type __u64 = ::core::ffi::c_ulonglong;
pub type __poll_t = ::core::ffi::c_uint;
#[repr(C, packed)]
#[derive(Debug, Copy, Clone)]
pub struct epoll_event {
    pub events: __poll_t,
    pub data: __u64,
}