jellyfin/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ReentrantLock.cs
2017-04-01 20:36:06 -04:00

23 lines
282 B
C#

using System.Threading;
namespace SharpCifs.Util.Sharpen
{
internal class ReentrantLock
{
public void Lock ()
{
Monitor.Enter (this);
}
public bool TryLock ()
{
return Monitor.TryEnter (this);
}
public void Unlock ()
{
Monitor.Exit (this);
}
}
}