Mutex
Definition - What does
Mutex
mean?
Mutex, in C#, is a class defined in the .NET framework class library that can be used to prevent the simultaneous execution of a block of code by multiple threads that are running in a single or multiple processes.
Mutex is used as a synchronization primitive in situations where a resource has to be shared by multiple threads simultaneously. Named mutex objects are used for inter-process synchronization because multiple applications can access the same mutex object.
The mutex class is designed to protect a shared resource like memory, file handle or network connection from simultaneous access by multiple threads or processes. It is used in lock statement to provide serialized access to resources and ensures mutual exclusion inside the critical sections of code. It helps prevent the unpredictable data corruption that can arise if there is no synchronization. It is often used to check for a single instance of an application at a time.
Mutex is an abbreviated form of mutually exclusive.
Techopedia explains
Mutex
Mutex provides multiple threads with access to a shared resource such that the second thread that needs to acquire a mutex that has already been acquired by another thread has to wait until the instant when the first thread releases the mutex. Care should be taken to ensure that a thread does not attempt to acquire a mutex that it already holds, as this can result in a deadlock.
For example, a mutex can be used to provide exclusive access to a file that has to be read or modified in a multithreaded environment.
Mutex class has a constructor that can be used to specify key parameters of a new mutex object during its initialization, such as name, ownership information and the access control security to be applied to the named mutex.
While lock statements can be used to synchronize threads within a single process, mutex is used across process boundaries.
Since mutex class is a wrapper to a Win32 construct, it requires interop transitions that result in a hit to performance. As such, it is not a good choice unless it is required for reasons like synchronization across process boundaries.
This definition was written in the context of C#.
Home
Dictionary
Tags
Development
C Sharp
Related Terms
Object (C#)
Lock Statement (C#)
Thread
Synchronization (.NET)
Constructor
Interoperability
Related Videos
Related Links
Related White Papers
Other Resources
Related Tags
Categories:
.NET
C Sharp
Development
Synonyms:
Mutually Exclusive
Tweet
Tweet
Popular White Papers
Techopedia Newsletter Sign-Up
Get Techopedia delivered to your inbox!
Term of the Day:
Get a new Techie Term sent to you every business day
Best of Techopedia:
We"ll bring you the best Techie articles each month.
Sign-In
Join Techopedia
Follow Us
Follow Techopedia on Facebook
Follow Techopedia on LinkedIn
Follow Techopedia on Twitter
Add Techopedia on Google Plus
Get Techopedia on RSS
Home
Dictionary
Articles
Tutorials
Newsletters
Development
Networks
Wireless
Support
Linux
Enterprise
Enterprise Apps
Security
CRM
IT Business
IT Careers
IT Management
Trends
Cloud Computing
Mobile computing
Personal Tech
Gaming
Internet
Search Engines
Social Media
World Wide Web
All Topics
Hacking
Online Marketing
Buzzwords and Jargon
Viruses
Operating Systems
Legal
People