Cosmos/source/Cosmos.Core.Plugs/System/Threading/MonitorImpl.cs
Charles Betros 2637bc9b41 Plugs
2017-02-05 01:36:54 -06:00

22 lines
439 B
C#

using System.Threading;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.Core.Plugs.System.Threading
{
[Plug(Target = typeof(Monitor))]
public class MonitorImpl
{
public static void Enter(object aObj)
{
}
public static void Exit(object aObj)
{
}
public static void ReliableEnter(object aObj, ref bool aTookLock)
{
aTookLock = true;
}
}
}