vote up 0 vote down star

I'm using IOCP on UDP socket, and the UDP socket may be closed in another thread. So, how can I free Per Socket Context and Per I/O Context which associated with SOCKET safely?

When I close the socket, there will still be un-completed I/O request in kernel queue.

If I free context just when socket closed, the GetQueueCompletionStatus may failed.

Now, my question is when to free context?

flag

2 Answers

vote up 1 vote down

Use a mutex to enforce mutual exclusion in a critical section of your code that will check the availability of the socket, and open it if necessary. Lock the socket to that thread, and release it appropriately when finished.

link|flag
vote up 0 vote down

I use reference counting on all of my per socket and per I/O data structures. It makes this kind of thing easy as they are deleted when their references drop to 0.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.