diff options
Diffstat (limited to 'vendor/rustix-0.36.5/src/param/mod.rs')
-rw-r--r-- | vendor/rustix-0.36.5/src/param/mod.rs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/rustix-0.36.5/src/param/mod.rs b/vendor/rustix-0.36.5/src/param/mod.rs deleted file mode 100644 index c47aca985..000000000 --- a/vendor/rustix-0.36.5/src/param/mod.rs +++ /dev/null @@ -1,31 +0,0 @@ -//! Process parameters. -//! -//! These values correspond to `sysconf` in POSIX, and the auxv array in Linux. -//! Despite the POSIX name “sysconf”, these aren't *system* configuration -//! parameters; they're *process* configuration parameters, as they may differ -//! between different processes on the same system. - -#[cfg(feature = "param")] -mod auxv; -#[cfg(target_vendor = "mustang")] -mod init; - -#[cfg(feature = "param")] -#[cfg(not(target_os = "wasi"))] -pub use auxv::clock_ticks_per_second; -#[cfg(feature = "param")] -pub use auxv::page_size; -#[cfg(feature = "param")] -#[cfg(any( - linux_raw, - all( - libc, - any( - all(target_os = "android", target_pointer_width = "64"), - target_os = "linux", - ) - ) -))] -pub use auxv::{linux_execfn, linux_hwcap}; -#[cfg(target_vendor = "mustang")] -pub use init::init; |