Function kevent [src]

Prototype

pub fn kevent( kq: i32, changelist: []const Kevent, eventlist: []Kevent, timeout: ?*const timespec, ) KEventError!usize

Parameters

kq: i32changelist: []const Keventeventlist: []Keventtimeout: ?*const timespec

Possible Errors

AccessDenied

The process does not have permission to register a filter.

EventNotFound

The event could not be found to be modified or deleted.

Overflow

changelist or eventlist had too many items on it. TODO remove this possibility

ProcessNotFound

The specified process to attach to does not exist.

SystemResources

No memory was available to register the event.

Source

pub fn kevent( kq: i32, changelist: []const Kevent, eventlist: []Kevent, timeout: ?*const timespec, ) KEventError!usize { while (true) { const rc = system.kevent( kq, changelist.ptr, cast(c_int, changelist.len) orelse return error.Overflow, eventlist.ptr, cast(c_int, eventlist.len) orelse return error.Overflow, timeout, ); switch (errno(rc)) { .SUCCESS => return @intCast(rc), .ACCES => return error.AccessDenied, .FAULT => unreachable, .BADF => unreachable, // Always a race condition. .INTR => continue, .INVAL => unreachable, .NOENT => return error.EventNotFound, .NOMEM => return error.SystemResources, .SRCH => return error.ProcessNotFound, else => unreachable, } } }