Linux and I/O completion ports?

前端 未结 6 791
Happy的楠姐
Happy的楠姐 2020-12-02 05:19

Using winsock, you can configure sockets or seperate I/O operations to \"overlap\". This means that calls to perform I/O are returned immediately, while the actual operation

6条回答
  •  甜味超标
    2020-12-02 05:52

    Read the blog entry from Google on libevent, you can implement IOCP semantics on Unix using asynchronous IO but cannot directly implement asynchronous IO semantics using IOCP,

    http://google-opensource.blogspot.com/2010/01/libevent-20x-like-libevent-14x-only.html

    For an example cross platform asynchronous IO with a BSD socket API look at ZeroMQ as recently published on LWN.net,

    http://www.zeromq.org/

    LWN article,

    http://lwn.net/Articles/370307/

提交回复
热议问题