1
Reply

Difference between Mutex and Semaphore?

Gul Md Ershad

Gul Md Ershad

Oct 13, 2016
393
1

    Semaphore ensures not more than a specified number of concurrent threads can access a resource.Mutex is used as a synchronization technique where a resource has to be shared by multiple threads simultaneously. It is used for inter-process synchronization because multiple applications can access the same mutex object.

    Gul Md Ershad
    October 13, 2016
    0