Let's say I installed a set of file descriptors, for example 8, 9, 10, 11, 12 in that order, and do epoll_wait () to read the data on them.
epoll_wait returns the data that should be read on sockets 8,10 and 11. Will there be an order of the file descriptors returned in the epoll array, 8, 10 and 11, or could they be mixed up?
source share