


Detailed explanation of .NET synchronization and asynchronous Mutex
This essay is continued: .NET synchronization and asynchronous thread-safe collection (11)
This essay and the next two essays will introduce the last major part of the .NET synchronization and asynchronous series. Block knowledge points: WaitHandle family.
Abstract base class: WaitHandle, three subclasses: EventWaitHandle (Event notification), Mutex (process synchronization lock), Semaphone (semaphore), and two grandchildren: System.Threading.AutoResetEvent, System. Threading.ManualResetEvent are all subclasses of EventWaitHandle.
1. Abstract base class WaitHandle
[ComVisibleAttribute(true)]public abstract class WaitHandle : MarshalByRefObject, IDisposable
Through the above information, we can know that WaitHandle inherits from MarshalByRefObject and implements the IDisposable interface.
You may not be very familiar with MarshalByRefObject, but you will definitely have used many of its subclasses. Let us reveal its true face.
MarshalByRefObject is described in MSND like this:
The application domain is a partition where one or more applications reside in an operating system process. Objects in the same application domain communicate directly. Objects in different application domains can communicate in two ways: by transferring copies of objects across application domain boundaries, or by using proxies to exchange messages. MarshalByRefObject is the base class for objects that communicate across application domain boundaries by exchanging messages using proxies.
You may be more confused after seeing this. Have I used it? Used its subclasses? That's right, its subclasses have been used, and there are many more.
For example, Brush, Image, Pen, Font, etc. in the System.Drawing namespace, and there is also a more familiar Stream under the System.IO namespace.
Extended reading: Utilization MarshalByRefObject Implements AOP.
Seeing this, we only need to know that WaitHandle has the ability to communicate across application domains.
2. Mutex (process synchronization lock)
1. MSDN defines Mutex as the synchronization primitive between processes, that is, the concept of lock.
On the other hand, Monitor is usually only used to communicate between threads in the application domain. In fact, Monitor can also provide locking in multiple application domains if the object used for the lock is derived from MarshalByRefObject.
Since Mutex needs to call operating system resources, its execution overhead is much greater than Monitor. Therefore, if you only need to synchronize operations between threads within the application, Monitor/lock should be the first choice
2. Usage of Mutex
WaitOne() /WaitOne(TimeSpan, Boolean) and several overloads: request ownership, this call will block until the current mutex receives a signal, or until When the optional timeout interval is reached, none of these methods need to provide a lock object as an additional parameter.
You can use the WaitHandle.WaitOne method to request ownership of a mutex. The calling thread is blocked until one of the following occurs:
The mutex signals non-ownership. In this case, the WaitOne method will return true, , mutex ownership of the calling thread, and access to the resource protected by the mutex. After the thread completes accessing resources, the ReleaseMutex method must be called to release the ownership of the mutex.
##Have methods millisecondsTimeout or ## for the timeout interval specified in the call to WaitOne #timeout The parameter has expired. In this case, the WaitOne method will return false, and the thread will not acquire ownership of the mutex at this time.
- If the thread terminates while owning the mutex, we call the mutex abandoned. In MSDN, Microsoft warns that this is a "serious" programming error. This means that after the owner of the mutex obtains ownership, the number of WaitOne() and ReleaseMutex() is unequal, and the caller itself terminates irresponsibly, causing the resource being protected by the mutex to be in an inconsistent state. In fact, this is nothing more than a reminder to remember to use Mutex
- in the try/finally structure.
3、全局和局部的Mutex
如果在一个应用程序域内使用Mutex,当然不如直接使用Monitor/lock更为合适,因为前面已经提到Mutex需要更大的开销而执行较慢。不过Mutex毕竟不是Monitor/lock,它生来应用的场景就应该是用于进程间同步的。用于在进程间通讯的Mutex我们称为全局Mutex,而只用于在应用程序域内部通讯的Mutex、我们称为局部Mutex.
全局Mutex和局部Mutex是通过构造函数来构造不同的实例的,让我们来看一下Mutex的构造函数,一共有5个,挑两个具有代表性的看一下吧:
Mutex():用无参数的构造函数得到的Mutex没有任何名称,而进程间无法通过变量的形式共享数据,所以没有名称的Mutex也叫做局部(Local)Mutex。另外,这样创建出的Mutex,创建者对这个实例并没有拥有权,仍然需要调用WaitOne()去请求所有权。
Mutex(Boolean initiallyOwned, String name, out Booldan createdNew, MutexSecurity):第一个bool参数:指示初始化的实例是否拥有互斥体所有权。第二个string类型、为互斥体指定一个名称,如果string为null或者空字符串 则相当于创建一个没有名字的Mutex,当属于局部Mutex. 而有名字的Mutex当属于全局Mutex.第三个bool参数、如果已经初始化了互斥体 返回True, 如果互斥体已经存在则返回False. 最后一个参数用于Mutex访问的安全性控制。
4、用途
Mutex天生为进程间的同步基元,因此它可以用来控制应用程序的单实例:
/// <summary>/// 单实例运行/// </summary>/// <returns> true 应用程序已启动,false 则没有 </returns>public bool SingleRun(ref System.Threading.Mutex mutex ) { mutex = new System.Threading.Mutex(false, "WINDOWS"); if (!mutex.WaitOne(0, false)) { mutex.Close(); mutex = null; } if (mutex == null) { return true; } return false; }
The above is the detailed content of Detailed explanation of .NET synchronization and asynchronous Mutex. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Generally speaking, we only need to use one of the headphones or speakers at the same time. However, some friends have reported that in the win11 system, they encountered the problem of headphones and speakers sounding at the same time. In fact, we can turn it off in the realtek panel and it will be fine. , let’s take a look below. What should I do if my headphones and speakers sound together in win11? 1. First find and open the "Control Panel" on the desktop. 2. Enter the control panel, find and open "Hardware and Sound" 3. Then find the "Realtek High Definition" with a speaker icon. Audio Manager" 4. Select "Speakers" and click "Rear Panel" to enter the speaker settings. 5. After opening, we can see the device type. If you want to turn off the headphones, uncheck "Headphones".

When you find that one or more items in your sync folder do not match the error message in Outlook, it may be because you updated or canceled meeting items. In this case, you will see an error message saying that your local version of the data conflicts with the remote copy. This situation usually happens in Outlook desktop application. One or more items in the folder you synced do not match. To resolve the conflict, open the projects and try the operation again. Fix One or more items in synced folders do not match Outlook error In Outlook desktop version, you may encounter issues when local calendar items conflict with the server copy. Fortunately, though, there are some simple ways to help

The development of artificial intelligence (AI) technologies is in full swing today, and they have shown great potential and influence in various fields. Today Dayao will share with you 4 .NET open source AI model LLM related project frameworks, hoping to provide you with some reference. https://github.com/YSGStudyHards/DotNetGuide/blob/main/docs/DotNet/DotNetProjectPicks.mdSemanticKernelSemanticKernel is an open source software development kit (SDK) designed to integrate large language models (LLM) such as OpenAI, Azure

Whether you are a beginner or an experienced professional, mastering C# will pave the way for your career.

Quick Application: Practical Development Case Analysis of PHP Asynchronous HTTP Download of Multiple Files With the development of the Internet, the file download function has become one of the basic needs of many websites and applications. For scenarios where multiple files need to be downloaded at the same time, the traditional synchronous download method is often inefficient and time-consuming. For this reason, using PHP to download multiple files asynchronously over HTTP has become an increasingly common solution. This article will analyze in detail how to use PHP asynchronous HTTP through an actual development case.

A very useful function of win10 clipboard is the cross-device cloud storage function, which is very useful and can help users copy and paste simultaneously on PC devices and mobile devices. The setting method is very simple, just set it on the clipboard in the system. Synchronize win10 clipboard to mobile phone 1. First click Start in the lower left corner to enter settings. 2. Then click "System". 3. Select "Clipboard" on the left. 4. Finally, click Login in "Cross-device synchronization" on the right, and then select your mobile phone.

Concurrent and Asynchronous Programming Concurrent programming deals with multiple tasks executing simultaneously, asynchronous programming is a type of concurrent programming in which tasks do not block threads. asyncio is a library for asynchronous programming in python, which allows programs to perform I/O operations without blocking the main thread. Event loop The core of asyncio is the event loop, which monitors I/O events and schedules corresponding tasks. When a coroutine is ready, the event loop executes it until it waits for I/O operations. It then pauses the coroutine and continues executing other coroutines. Coroutines Coroutines are functions that can pause and resume execution. The asyncdef keyword is used to create coroutines. The coroutine uses the await keyword to wait for the I/O operation to complete. The following basics of asyncio

PHP asynchronous coroutine development: accelerating data caching and read and write operations. In actual application development, data caching and read and write operations are common performance bottlenecks. In order to improve system efficiency and user experience, PHP asynchronous coroutine technology can be used to accelerate these operations. This article will introduce the basic concepts and principles of PHP asynchronous coroutines and provide specific code examples. 1. The concept and principle of asynchronous coroutine Asynchronous coroutine is an efficient concurrent programming technology that uses a single thread to achieve lightweight task scheduling and collaboration. Compared with traditional multi-threaded or multi-process concurrent programming
