procfs_core/sys/mod.rs
1//! Sysctl is a means of configuring certain aspects of the kernel at run-time,
2//! and the `/proc/sys/` directory is there so that you don't even need special tools to do it!
3//!
4//! This directory (present since 1.3.57) contains a number of files
5//! and subdirectories corresponding to kernel variables.
6//! These variables can be read and sometimes modified using the `/proc` filesystem,
7//! and the (deprecated) sysctl(2) system call.
8
9pub mod kernel;