Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

move_mount

linux.move_mount
pub fn move_mount(from_dirfd: fd_t, from_path: [*:0]const u8, to_dirfd: fd_t, to_path: [*:0]const u8, flags: MOVE_MOUNT) usize

File

lib/std/os/linux.zig:1180

Code

pub fn move_mount(from_dirfd: fd_t, from_path: [*:0]const u8, to_dirfd: fd_t, to_path: [*:0]const u8, flags: MOVE_MOUNT) usize {
    return syscall5(
        .move_mount,
        @as(u32, @bitCast(from_dirfd)),
        @intFromPtr(from_path),
        @as(u32, @bitCast(to_dirfd)),
        @intFromPtr(to_path),
        @as(u32, @bitCast(flags)),
    );
}