0
4.7kviews
Explain how Reader-Writer Problem can be solved with semaphore?
1 Answer
| written 3.8 years ago by |
The readers-writers problem relates to an object such as a file that is shared between multiple processes. Some of these processes are readers i.e. they only want to read the data from the object and some of the processes are writers i.e. they want to write into the object.
The …