Kqueue
Kqueue is a scalable event notification interface introduced in FreeBSD 4.1[1], also supported in NetBSD, OpenBSD, DragonflyBSD, and Mac OS X. It's the foundation of Apple's Grand Central Dispatch.
Kqueue provides efficient input and output event pipelines between the kernel and userland. Thus, it is possible to modify event filters as well as receive pending events while using only a single system call to kevent(2) per main event loop iteration. This contrasts with older traditional polling system calls such as poll(2) and select(2) which are less efficient, especially when polling for events on a large number of file descriptors.
Kqueue does not only handle file descriptor events but is also used for various other notifications such as file modification monitoring, signals, asynchronous I/O events (AIO), child process state change monitoring and timers which support nanosecond resolution.
Some other operating systems which traditionally only supported select(2) and poll(2) also currently provide more efficient polling alternatives, such as epoll on Linux and I/O Completion Ports on Illumos and Solaris.
[edit] See also
Kqueue equivalent for other platforms:
- on Linux: epoll
- on Solaris, Windows and AIX: I/O Completion Ports
[edit] References
[edit] External links
| This Unix-related article is a stub. You can help Wikipedia by expanding it. |