Computer Science, asked by ramlal6182, 11 months ago

Which is the mechanism to enforce limits on the access of a resource when multiple threads are executed?

Answers

Answered by neeraj5924
0
filter feature.............
Answered by aqibkincsem
0

The mechanism in question here is known as a Semaphore. The purpose of a Semaphore is to limit the access of threads concurrently to the shared resources.

It is great for non-inclusive locking implementation. This essentially enables concurrency limiting. It is different from a Mutex because Mutex allows for synchronization across processes. Therefore it allows multiple threads to access the resource.  

Similar questions