mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
13 lines
385 B
C#
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
|
|
}
|
|
}
|
|
}
|