Top "Kqueue" questions

Kqueue is a scalable event notification interface introduced in FreeBSD 4.1,[1] also supported in NetBSD, OpenBSD, DragonflyBSD, and Mac OS X.

File-level filesystem change notification in Mac OS X

I want my code to be notified when any file under (either directly or indirectly) a given directory is modified. …

macos fsevents readdirectorychangesw kqueue
Does OS X not support epoll function?

I'm learning to use epoll function. But my OS X, Mountain Lion doesn't have a header file, sys/epoll.h. …

macos epoll kqueue
serving large file using select, epoll or kqueue

Nginx uses epoll, or other multiplexing techniques(select) for its handling multiple clients, i.e it does not spawn a …

select nginx epoll kqueue