예제 #1
0
파일: Heap.cs 프로젝트: elkaamee326/Cosmos
 /// <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();
 }
예제 #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();
 }