43 lines
776 B
Rust
43 lines
776 B
Rust
use crate::backend::c;
|
|
use crate::ugid::{Gid, RawGid, RawUid, Uid};
|
|
|
|
#[cfg(not(target_os = "wasi"))]
|
|
#[inline]
|
|
#[must_use]
|
|
pub(crate) fn getuid() -> Uid {
|
|
unsafe {
|
|
let uid = c::getuid() as RawUid;
|
|
Uid::from_raw(uid)
|
|
}
|
|
}
|
|
|
|
#[cfg(not(target_os = "wasi"))]
|
|
#[inline]
|
|
#[must_use]
|
|
pub(crate) fn geteuid() -> Uid {
|
|
unsafe {
|
|
let uid = c::geteuid() as RawUid;
|
|
Uid::from_raw(uid)
|
|
}
|
|
}
|
|
|
|
#[cfg(not(target_os = "wasi"))]
|
|
#[inline]
|
|
#[must_use]
|
|
pub(crate) fn getgid() -> Gid {
|
|
unsafe {
|
|
let gid = c::getgid() as RawGid;
|
|
Gid::from_raw(gid)
|
|
}
|
|
}
|
|
|
|
#[cfg(not(target_os = "wasi"))]
|
|
#[inline]
|
|
#[must_use]
|
|
pub(crate) fn getegid() -> Gid {
|
|
unsafe {
|
|
let gid = c::getegid() as RawGid;
|
|
Gid::from_raw(gid)
|
|
}
|
|
}
|