mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 12:45:01 +00:00
Don't throw an exception when attempting to leave an unentered critical section, for consistency with simplsharp
This commit is contained in:
@@ -32,6 +32,9 @@ namespace ICD.Common.Utils.Tests
|
|||||||
[Test]
|
[Test]
|
||||||
public void LeaveTest()
|
public void LeaveTest()
|
||||||
{
|
{
|
||||||
|
SafeCriticalSection section = new SafeCriticalSection();
|
||||||
|
Assert.DoesNotThrow(() => section.Leave());
|
||||||
|
|
||||||
Assert.Inconclusive();
|
Assert.Inconclusive();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,8 @@ namespace ICD.Common.Utils
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public void Leave()
|
public void Leave()
|
||||||
{
|
{
|
||||||
Monitor.Exit(this);
|
if (Monitor.IsEntered(this))
|
||||||
|
Monitor.Exit(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user