Home | History | Annotate | Download | only in dist

Lines Matching defs:netio

2  * netio.h -- network I/O support.
9 * The netio module implements event based I/O handling using
29 * the handler to the netio structure.
64 typedef struct netio netio_type;
68 struct netio
93 typedef void (*netio_event_handler_type)(netio_type *netio,
146 * Create a new netio instance using the specified REGION. The netio
152 * Add a new HANDLER to NETIO.
154 void netio_add_handler(netio_type *netio, netio_handler_type *handler);
157 * Remove the HANDLER from NETIO.
159 void netio_remove_handler(netio_type *netio, netio_handler_type *handler);
164 const struct timespec *netio_current_time(netio_type *netio);
173 int netio_dispatch(netio_type *netio,