using sysIO = System.IO; namespace Cosmos.System { /// /// Power class. /// public static class Power { /// /// Reboot with CPU. /// public static void Reboot() { HAL.Power.CPUReboot(); } /// /// Shutdown the ACPI. /// /// Thrown on IO error. public static void Shutdown() { HAL.Power.ACPIShutdown(); } } }