Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
42
third-party/vendor/rustix/src/backend/libc/ugid/syscalls.rs
vendored
Normal file
42
third-party/vendor/rustix/src/backend/libc/ugid/syscalls.rs
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
use crate::backend::c;
|
||||
use crate::ugid::{Gid, Uid};
|
||||
|
||||
#[cfg(not(target_os = "wasi"))]
|
||||
#[inline]
|
||||
#[must_use]
|
||||
pub(crate) fn getuid() -> Uid {
|
||||
unsafe {
|
||||
let uid = c::getuid();
|
||||
Uid::from_raw(uid)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(target_os = "wasi"))]
|
||||
#[inline]
|
||||
#[must_use]
|
||||
pub(crate) fn geteuid() -> Uid {
|
||||
unsafe {
|
||||
let uid = c::geteuid();
|
||||
Uid::from_raw(uid)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(target_os = "wasi"))]
|
||||
#[inline]
|
||||
#[must_use]
|
||||
pub(crate) fn getgid() -> Gid {
|
||||
unsafe {
|
||||
let gid = c::getgid();
|
||||
Gid::from_raw(gid)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(target_os = "wasi"))]
|
||||
#[inline]
|
||||
#[must_use]
|
||||
pub(crate) fn getegid() -> Gid {
|
||||
unsafe {
|
||||
let gid = c::getegid();
|
||||
Gid::from_raw(gid)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue