1
Reply

How is Mutex different from lock?

Gul Md Ershad

Gul Md Ershad

Oct 13, 2016
285
0

    Mutex is a synchronization technique used for inter-process Synchronization because multiple applications can access the same mutex object. Example: It makes sure that only instance of an application should run at a time.Lock is a basic synchronization technique ensures that one thread does not enter a critical section of code while another thread is in the critical section.

    Gul Md Ershad
    October 13, 2016
    0