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.
Zig › std/ › os/ › linux.zig › CLONE
CLONE
linux.CLONE
pub const CLONE = struct
File
Code
pub const CLONE = struct {
pub const VM = 0x00000100 ;
pub const FS = 0x00000200 ;
pub const FILES = 0x00000400 ;
pub const SIGHAND = 0x00000800 ;
pub const PIDFD = 0x00001000 ;
pub const PTRACE = 0x00002000 ;
pub const VFORK = 0x00004000 ;
pub const PARENT = 0x00008000 ;
pub const THREAD = 0x00010000 ;
pub const NEWNS = 0x00020000 ;
pub const SYSVSEM = 0x00040000 ;
pub const SETTLS = 0x00080000 ;
pub const PARENT_SETTID = 0x00100000 ;
pub const CHILD_CLEARTID = 0x00200000 ;
pub const DETACHED = 0x00400000 ;
pub const UNTRACED = 0x00800000 ;
pub const CHILD_SETTID = 0x01000000 ;
pub const NEWCGROUP = 0x02000000 ;
pub const NEWUTS = 0x04000000 ;
pub const NEWIPC = 0x08000000 ;
pub const NEWUSER = 0x10000000 ;
pub const NEWPID = 0x20000000 ;
pub const NEWNET = 0x40000000 ;
pub const IO = 0x80000000 ;
pub const CLEAR_SIGHAND = 0x100000000 ;
pub const INTO_CGROUP = 0x200000000 ;
pub const NEWTIME = 0x00000080 ;
}