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.

clone2

See also clone (from the arch-specific include)

linux.clone2
pub fn clone2(flags: u32, child_stack_ptr: usize) usize

File

lib/std/os/linux.zig:1735

Code

pub fn clone2(flags: u32, child_stack_ptr: usize) usize {
    return syscall2(.clone, flags, child_stack_ptr);
}