Function fchmodat [src]
Prototype
pub inline fn fchmodat(dirfd: fd_t, path: []const u8, mode: mode_t, flags: u32) FChmodAtError!void
Parameters
dirfd: fd_t
path: []const u8
mode: mode_t
flags: u32
Possible Errors
path
resolves to a symbolic link, and AT.SYMLINK_NOFOLLOW
was set
in flags
. This error only occurs on Linux, where changing the mode of
a symbolic link has no meaning and can cause undefined behaviour on
certain filesystems.
The procfs fallback was used but procfs was not mounted.
The procfs fallback was used but the process exceeded its open file limit.
The procfs fallback was used but the system exceeded it open file limit.
The Operating System returned an undocumented error code.
This error is in theory not possible, but it would be better to handle this error than to invoke undefined behavior.
When this error code is observed, it usually means the Zig Standard Library needs a small patch to add the error code to the error set for the respective function.
Source
pub inline fn fchmodat(dirfd: fd_t, path: []const u8, mode: mode_t, flags: u32) FChmodAtError!void {
if (!fs.has_executable_bit) @compileError("fchmodat unsupported by target OS");
// No special handling for linux is needed if we can use the libc fallback
// or `flags` is empty. Glibc only added the fallback in 2.32.
const skip_fchmodat_fallback = native_os != .linux or
std.c.versionCheck(.{ .major = 2, .minor = 32, .patch = 0 }) or
flags == 0;
// This function is marked inline so that when flags is comptime-known,
// skip_fchmodat_fallback will be comptime-known true.
if (skip_fchmodat_fallback)
return fchmodat1(dirfd, path, mode, flags);
return fchmodat2(dirfd, path, mode, flags);
}