compile-fan
compile-fan

Reputation: 17645

Does implementation of epoll have any rfc?

Many network protocols have their own rfc(request for comment),

like this one for http/1.1:

http://www.w3.org/Protocols/HTTP/1.1/rfc2616.pdf

does epoll have its own rfc online?

Upvotes: 0

Views: 217

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799430

epoll is a set of functions, not a network protocol. The epoll(7) man page is probably the clearest source of information about their usage.

Upvotes: 4

Related Questions