Cosmos/source/Cosmos.Core.Plugs/System/Runtime/CompilerServices/RuntimeHelpers.cs
2017-01-28 23:04:47 -06:00

13 lines
385 B
C#

using Cosmos.IL2CPU.Plugs;
namespace Cosmos.Core.Plugs.System.Runtime.CompilerServices
{
[Plug(TargetName = "System.Runtime.CompilerServices.RuntimeHelpers, mscorlib", IsMicrosoftdotNETOnly = true)]
public class RuntimeHelpers
{
public void ProbeForSufficientStack()
{
// no implementation yet, before threading not needed
}
}
}