structstd.os.linux.PERF.FLAG[src]

Values

ConstantFD_NO_GROUP[src]

Source Code

Source code
pub const FD_NO_GROUP = 1 << 0

ConstantFD_OUTPUT[src]

Source Code

Source code
pub const FD_OUTPUT = 1 << 1

ConstantPID_CGROUP[src]

Source Code

Source code
pub const PID_CGROUP = 1 << 2

ConstantFD_CLOEXEC[src]

Source Code

Source code
pub const FD_CLOEXEC = 1 << 3

Source Code

Source code
pub const FLAG = struct {
    pub const FD_NO_GROUP = 1 << 0;
    pub const FD_OUTPUT = 1 << 1;
    pub const PID_CGROUP = 1 << 2;
    pub const FD_CLOEXEC = 1 << 3;
}