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