Exemple #1
0
 /// <summary>
 /// Init heap.
 /// </summary>
 /// <exception cref="Exception">Thrown on fatal error, contact support.</exception>
 public static unsafe void Init()
 {
     StackStart = (uint *)CPU.GetStackStart();
     HeapSmall.Init();
     HeapMedium.Init();
     HeapLarge.Init();
 }
Exemple #2
0
 /// <summary>
 /// Init heap.
 /// </summary>
 /// <exception cref="Exception">Thrown on fatal error, contact support.</exception>
 public static void Init()
 {
     HeapSmall.Init();
     HeapMedium.Init();
     HeapLarge.Init();
 }