[][src]Function simple_libc::sysconf_raw

pub fn sysconf_raw(name: Int) -> Result<Long>

Get the value of runtime constants/limits.

Given a "name" (one of the libc::_SC_* constants), returns the associated configuration value, unless an error occurred (usually when the "name" is not recognized).

Unlike the sysconf() wrapper, this function does not treat return values < 0 specially; that is left to the user.