realm_syscall 0.1.11

Realm's convenient syscall collections.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Realm's convenient syscall collections.

#[cfg(unix)]
mod daemon;
#[cfg(unix)]
pub use daemon::*;

#[cfg(all(unix, not(target_os = "android")))]
mod nofile;
#[cfg(all(unix, not(target_os = "android")))]
pub use nofile::*;

mod socket;
pub use socket::*;
pub use socket2;