Cosmos/source/Cosmos.IL2CPU/Plugs/System/Runtime/CompilerServices/RuntimeHelpers.cs
2015-12-26 18:04:58 -06:00

16 lines
No EOL
597 B
C#

namespace Cosmos.IL2CPU.Plugs.System.Runtime.CompilerServices {
[Plug(TargetName = "System.Runtime.CompilerServices.RuntimeHelpers, mscorlib", IsMicrosoftdotNETOnly=true)]
public class RuntimeHelpers {
//pluged in IL2CPU\Cosmos.IL2CPU.X86\Plugs\System.Runtime.CompilerServices\RuntimeHelpersImpl.cs
//public static void InitializeArray(int[] aArray, int[] aFieldHandle) {
// for (int i = 0; i < aArray.Length; i++) {
// aArray[i] = aFieldHandle[i];
// }
//}
public void ProbeForSufficientStack() {
// no implementation yet, before threading not needed
}
}
}