Exemplo n.º 1
0
 /// <summary>
 /// Performs shutdown process, then calls ADC reboot
 /// function.
 /// </summary>
 public unsafe static void Reboot()
 {
     SetKernelStage(KernelStage.Halt);
     BootControl.Reboot();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Performs shutdown process, then calls ADC halt
 /// function.
 /// </summary>
 public unsafe static void Halt()
 {
     SetKernelStage(KernelStage.Halt);
     BootControl.Freeze();
 }