struct KEVENT [src]
Alias for std.c.darwin.KEVENT
Members
- FLAG (struct)
Source
pub const KEVENT = struct {
/// Used as the `flags` arg for `kevent64`.
pub const FLAG = packed struct(c_uint) {
/// immediate timeout
IMMEDIATE: bool = false,
/// output events only include change
ERROR_EVENTS: bool = false,
_: u30 = 0,
/// no flag value
pub const NONE: KEVENT.FLAG = .{
.IMMEDIATE = false,
.ERROR_EVENTS = false,
};
};
}