iv_event_unregister (3) Linux Manual Page
IV_EVENT_INIT, iv_event_register, iv_event_unregister, iv_event_post – manage ivykis objects for event notification Synopsis#include <iv_event.h> struct iv_event { void *cookie; void (*handler)(void *); };int IV_EVENT_INIT(struct iv_event *this); int iv_event_register(struct iv_event *this); void iv_event_unregister(struct iv_event *this); void iv_event_post(struct iv_event *this); Descriptioniv_event provides a way for delivering events to ivykis(3) recipients across thread boundaries. The intended event recipient calls…
