Linux and I/O completion ports?

If you’re looking for something exactly like IOCP, you won’t find it, because it doesn’t exist. Windows uses a notify on completion model (hence I/O Completion Ports). You start some operation asynchronously, and receive a notification when that operation has completed. Linux applications (and most other Unix-alikes) generally use a notify on ready model. You … Read more