This repository was archived by the owner on Nov 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 503
Expand file tree
/
Copy pathMutex.Unix.cs
More file actions
50 lines (44 loc) · 1.59 KB
/
Mutex.Unix.cs
File metadata and controls
50 lines (44 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Win32.SafeHandles;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
namespace System.Threading
{
public sealed partial class Mutex
{
private void CreateMutexCore(bool initiallyOwned, string name, out bool createdNew)
{
if (name != null)
{
throw new PlatformNotSupportedException(SR.PlatformNotSupported_NamedSynchronizationPrimitives);
}
SafeWaitHandle = WaitSubsystem.NewMutex(initiallyOwned);
createdNew = true;
}
private static OpenExistingResult OpenExistingWorker(string name, out Mutex result)
{
throw new PlatformNotSupportedException(SR.PlatformNotSupported_NamedSynchronizationPrimitives);
}
public void ReleaseMutex()
{
// The field value is modifiable via the public <see cref="WaitHandle.SafeWaitHandle"/> property, save it locally
// to ensure that one instance is used in all places in this method
SafeWaitHandle waitHandle = SafeWaitHandle;
if (waitHandle.IsInvalid)
{
ThrowInvalidHandleException();
}
waitHandle.DangerousAddRef();
try
{
WaitSubsystem.ReleaseMutex(waitHandle.DangerousGetHandle());
}
finally
{
waitHandle.DangerousRelease();
}
}
}
}