vote up 0 vote down star

Background: I'm using CreateIoCompletionPort, WSASend/Recv, and GetQueuedCompletionStatus to do overlapped socket io on my server. For flow control, when sending to the client, I only allow several WSASend() to be called when all pending OVERLAPs have popped off the IOCP.

Problem: Recently, there are occassions when the OVERLAPs do not get returned to the IOCP. The thread calling GetQueuedCompletionStatus does not get them and they remain in my local pending queue. I've verified that the client DOES receive the data off the socket and the socket is connected. No errors were returned when the WSASend() calls were made. The OVERLAPs simply "never" come back without an external stimulus like the following:

  1. Disconnecting the socket from the client or server, immediately allows the GetQueuedCompletionStatus thread to retrieve the OVERLAPs
  2. Making additional calls to WSASend(), sometimes several are needed, before all the OVERLAPs suddenly pop off the queue.

Question: Has anyone seen this type of behavior? Any ideas on what is causing this?

Thanks, Geoffrey

flag
Is your app single or multi-threaded? – zdan Jul 17 at 20:22
It is multi-threaded. One thread loops and only calls GetQueuedCompletionStatus and recycles the OVERLAP. And another thread uses WaitForSingleObject (with a short timeout 100ms) and calls WSASend() if the event was set. – Geoffrey Jul 17 at 20:54

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.