feature. See also
. The project being documented here (as the example) is the Zig library itself.
linux.TFD
pub const TFD = switch (native_arch)
File
Code
pub const TFD = switch (native_arch) {
.sparc, .sparc64 => packed struct(u32) {
_0: u14 = 0,
NONBLOCK: bool = false,
_15: u7 = 0,
CLOEXEC: bool = false,
_: u9 = 0,
pub const TIMER = TFD_TIMER;
},
.mips, .mipsel, .mips64, .mips64el => packed struct(u32) {
_0: u7 = 0,
NONBLOCK: bool = false,
_8: u11 = 0,
CLOEXEC: bool = false,
_: u12 = 0,
pub const TIMER = TFD_TIMER;
},
.alpha => packed struct(u32) {
_0: u2 = 0,
NONBLOCK: bool = false,
_3: u18 = 0,
CLOEXEC: bool = false,
_: u10 = 0,
pub const TIMER = TFD_TIMER;
},
else => packed struct(u32) {
_0: u11 = 0,
NONBLOCK: bool = false,
_12: u7 = 0,
CLOEXEC: bool = false,
_: u12 = 0,
pub const TIMER = TFD_TIMER;
},
}