The io-completion-ports tag has no wiki summary.
21
votes
3answers
392 views
.NET sockets vs C++ sockets at high performance
My question is to settle an argument with my co-workers on C++ vs C#.
We have implemented a server that receives a large amount of UDP streams. This server was developed in C++ using asynchronous ...
15
votes
1answer
1k views
Whats the difference between epoll, poll, threadpool?
Could someone explain what the difference is between epoll, poll and threadpool?
What are the pros / cons?
Any suggestions for frameworks?
Any suggestions for simple/basic tutorials?
It seams that ...
5
votes
2answers
777 views
Intermittently no data delivered through boost::asio / io completion port
Problem
I am using boost::asio for a project where two processes on the same machine communicate using TCP/IP. One generates data to be read by the other, but I am encountering a problem where ...
4
votes
1answer
167 views
c# parallel IO Completion Ports
I'm trying to figure out the best way to wait for some number of I/O Completion ports to complete.
For this scenario, let's say that I'm in a MVC3 web app. (My understanding is the use of I/O ...
3
votes
6answers
251 views
Exiting a thread that does not have a loop
I need a way to stop a worker thread that does not contain a loop. The application starts the thread, the thread then creates a FileSystemWatcher object and a Timer object. Each of these has callback ...
2
votes
2answers
202 views
How to detect WinSock TCP timeout with BindIoCompletionCallback
I am building a Visual C++ WinSock TCP server using BindIoCompletionCallback, it works fine receiving and sending data, but I can't find a good way to detect timeout: ...
2
votes
2answers
104 views
Put several HTTP request to wait for the same I/O completion port
My application load asynchronously a big amount of information from a web service and "Application_Start".
If an user request wants to use that information, and it is nor ready, the thread will be ...
1
vote
2answers
38 views
WSARecv, Completionport Model, how to manage Buffer and avoid overruns?
My Problem: My Completionport Server will receive Data of unknown size from different clients, the thing is, that i don't know how avoid buffer overruns/ how to avoid my (receiving) buffer being ...
1
vote
1answer
114 views
CloseHandle() returns before the serial port is actually closed
I'm pulling my hair trying to figure out when a serial port finishes closing so I can reopen it. It turns out that CloseHandle() returns before the port is actually unlocked.
I am opening a serial ...
1
vote
1answer
95 views
Non-blocking socket connect on Windows without ConnectEx
I need to initiate 1000's of client connections in a single process, the key limitation I need to work around is the driver does not support ConnectEx, so I cannot have a pure IOCP solution.
My ...
1
vote
0answers
97 views
Why CompletionKey in I/O completion port?
Remark from MSDN about CompletionKey in CreateIoCompletionPort function:
Use the CompletionKey parameter to help your application track which
I/O operations have completed. This value is not ...
1
vote
2answers
108 views
IO COmpletion Ports for Mac OS X
Is there any equivalent of IO COmpletion ports on Mac OS X for implementing Asynchronous IO on files....
Thank you....
1
vote
1answer
136 views
Is it necessary to set hEvent on the OVERLAPPED structure when doing I/O completion ports?
I'm using I/O completion ports on Windows for serial port communication (we will potentially have lots and lots of serial port usage). I've done the usual, creating the IOCP, spinning up the I/O ...
1
vote
1answer
264 views
Is my loop wrong ? Do I misuse ReadFile() and I/O completion port ?
I want to implement a server/client using named pipes (for IPC).I'm using async (overlapped) connections and I/O completion port (I searched a lot and it seems that it is the most efficient way to do ...
1
vote
2answers
301 views
Efficient Overlapped I/O for a socket server
Which of these two different models would be more efficient (consider thrashing, utilization of processor cache, overall desgn, everything, etc)?
1 IOCP and spinning up X threads (where X is the ...
0
votes
1answer
114 views
GetQueuedCompletionStatus blocks forever
I'm writing a server application and I want to use IOCompletion ports, so I wrote a prototype for the server, but I'm facing a problem with GetQueuedCompletionStatus that it never returns(it blocks). ...
0
votes
3answers
245 views
Winsock: Overlapped AcceptEx indicates a new connection while no client connecting
In my program I am using the overlapped version of AcceptEx() to accept new connections.
After a new connection has been accepted, the programm initiates another overlapped call to AcceptEx() for ...
0
votes
2answers
227 views
Resources To learn IOCP On Windows
I recently was made aware of this thing called IOCP on windows and i began searching for more information on it but i couldn't find anything up to date (most of the examples were on codeproject almost ...
0
votes
1answer
21 views
About synchronous access in I/O Works in I/O Completion
Supposing there are 4 I/O workers in the use of I/O Completion Port corresponding to the number of processors, do they need synchronous access on client context among each other?
The client context ...
0
votes
2answers
561 views
GetQueuedCompletionStatus returns ERROR_NETNAME_DELETED on remote socket closure
I am writing a small server-client-stuff using an I/O-Completion Port.
I get the server and client connected successfully via AcceptEx over my completion port.
After the client has connected the ...