What is the difference between lock and Mutex? Why can't they be used interchangeably?
|
A lock is specific to the AppDomain, while Mutex to the Operating System allowing you to perform cross-process locking and synchronization. |
|||
|
|
The The |
|||
|
|
|
A
Furthermore, one should take special care - detailed on the same page as well - when using a system-wide mutex on a system with Terminal Services. One of the differences between
The other difference is what others point out: a named Unless one has special needs or requires synchronization across processes, it is just better to stick to There are several other "minor" differences, like how abandonment is handled, etc. The same can be said about |
||||
|
|
|
I use a Mutex to check see if I already have a copy of the application running on the same machine.
|
|||
|
|
|
Mutex is a cross process and there will be a classic example of not running more than one instance of an application. 2nd example is say you are having a file and you don't want different process to access the same file , you can implement a Mutex but remember one thing Mutex is a operating system wide and cannot used between two remote process. Lock is a simplest way to protect section of your code and it is appdomain specific , you can replace lock with Moniters if you want more controlled synchronization. |
||||
|
|
