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 here refers to what is passed through I/O CompletionKey. The problem can be that if worker A has post an I/O to I/O Completion Queue with context but is now changing the context. Worker B who is waken up to deal the I/O is reading the context at the same time. What would happen?

link|improve this question

75% accept rate
feedback

1 Answer

You should synchronise access to the contents of your 'client context' using a critical section.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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