Function setregid
pub unsafe fn setregid(rgid: u32, egid: u32) -> Result<(), i32> ⓘ
Available on crate feature
dep_nc
only.Expand description
Set real and effective group IDs of the calling process.
§Examples
let ret = unsafe { nc::setregid(0, 0) };
assert_eq!(ret, Err(nc::EPERM));