Re: Waiting for 'high priority' events with kqueue

2015-06-24 Thread Daurnimator
(sorry, I'm not subbed to list; only saw your reply by looking up archives) The only high priority events are socket out of band data. EV_OOB is only used in 3 c files: http://fxr.watson.org/fxr/ident?v=xnu-2050.18.24i=EV_OOB It is simple enough for us to do the same if that's useful.

Re: Waiting for 'high priority' events with kqueue

2015-06-12 Thread Daurnimator
On 12 June 2015 at 02:12, Christos Zoulas chris...@zoulas.com wrote: In article CAEnbY+f0PC=bvb2o+y5ndfnk5hvp8tbqmzydr2a7paqaxmx...@mail.gmail.com you write: Hi, I'm working on adding support for high priority events to a user space event library. Conceptually, I need the equivalent of

Waiting for 'high priority' events with kqueue

2015-06-11 Thread Daurnimator
to wait for high priority events with kqueue on NetBSD? I had a read through various kernel sources, but didn't manage to find anything. Could NetBSD add support for the EV_OOBAND flag? Who is responsible for these sorts of things? -- Daurnimator PS, I'm not an NetBSD user myself, I'm just trying