summaryrefslogtreecommitdiff
path: root/src/sys/mod.rs
blob: 56104834071839b029a40a1b522b5b7db783c36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#[cfg(target_os = "linux")]
pub mod epoll;

#[cfg(any(target_os = "macos", target_os = "ios"))]
pub mod event;

#[cfg(target_os = "linux")]
pub mod eventfd;

pub mod ioctl;

pub mod signal;

pub mod socket;

pub mod stat;

pub mod termios;

#[cfg(target_os = "linux")]
pub mod utsname;

pub mod wait;

pub mod mman;