Hi.

2016-01-04 19:19 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
It heavily depends on data structure you using what kind of synchronization mechanism is more efficient than another.
For instance AtomicQueue implementation is one that falls in such category 'many readers, but only single writer'. But it's not using semaphores to synchronise access to it.

Can you explain deeply what problem with AtomicQueue in ��'many readers, but only single writer'?