How to bind multi IOCP handle to a single file handle to split read / write request?

62 Views Asked by At

I want to split read write request to a single file. And I still want to leverage on IOCP to get best performance. In detail. I want to bind a file handle F to two IOCP queue. One for read names R, one for write names W. For R, I will use it in thread T1 and work on polling mode. For W, I will use it in thread T2 and work on wait interrupt mode. How to do that?

0

There are 0 best solutions below