Sha256: 1a46082151c2ef319667078923df74b01d4a94d25d3777083775179bda8bf3bf
Contents?: true
Size: 401 Bytes
Versions: 3
Compression:
Stored size: 401 Bytes
Contents
//! Memory map operations. #[cfg(not(target_os = "redox"))] mod madvise; mod mmap; mod msync; #[cfg(any(target_os = "android", target_os = "linux"))] mod userfaultfd; #[cfg(not(target_os = "redox"))] pub use madvise::{madvise, Advice}; pub use mmap::*; pub use msync::{msync, MsyncFlags}; #[cfg(any(target_os = "android", target_os = "linux"))] pub use userfaultfd::{userfaultfd, UserfaultfdFlags};
Version data entries
3 entries across 3 versions & 1 rubygems