Real World Examples of read-write in concurrent software

Posted by Richard Fabian on Stack Overflow See other posts from Stack Overflow or by Richard Fabian
Published on 2010-05-05T16:36:02Z Indexed on 2010/05/05 16:38 UTC
Read the original article Hit count: 128

I'm looking for real world examples of needing read and write access to the same value in concurrent systems.

In my opinion, many semaphores or locks are present because there's no known alternative (to the implementer,) but do you know of any patterns where mutexes seem to be a requirement?

In a way I'm asking for candidates for the standard set of HARD problems for concurrent software in the real world.

© Stack Overflow or respective owner

Related posts about concurrency

Related posts about multithreading