Sha256: 3d3a42bbf4d086f806d7d9f6e4b0a49a873dc27f4f03ffca0921f5536acc24e5
Contents?: true
Size: 434 Bytes
Versions: 19
Compression:
Stored size: 434 Bytes
Contents
#[cfg(feature = "alloc")] pub(crate) mod dir; pub mod inotify; pub(crate) mod makedev; pub(crate) mod syscalls; pub(crate) mod types; // TODO: Fix linux-raw-sys to define ioctl codes for sparc. #[cfg(any(target_arch = "sparc", target_arch = "sparc64"))] pub(crate) const EXT4_IOC_RESIZE_FS: u32 = 0x8008_6610; #[cfg(not(any(target_arch = "sparc", target_arch = "sparc64")))] pub(crate) use linux_raw_sys::ioctl::EXT4_IOC_RESIZE_FS;
Version data entries
19 entries across 19 versions & 1 rubygems