Function nc::setregid

source ·
pub unsafe fn setregid(rgid: gid_t, egid: gid_t) -> Result<(), Errno>
Expand description

Set real and effective group IDs of the calling process.

§Example

let ret = unsafe { nc::setregid(0, 0) };
assert_eq!(ret, Err(nc::EPERM));