Another synchronization question...I hope you guys don\'t get annoyed ;)
Assume the following scenario: one central data structure (very large, so I don\'t really wa
Whenever writer wants to access, you enqueue incoming readers (have them wait on Condition), wait for the active readers to finish, write and when finished let the enqueued readers access.