C# Class SharpOS.Kernel.ADC.X86.BootControl

Contains all system power functionality
Change the name to reflect something more than just booting? (after all, sleeping/resuming etc. fit well together with the rest of the functions)
Mostrar archivo Open project: sharpos/SharpOS

Public Methods

Method Description
Freeze ( ) : void

Freezes the system. Usually used after a crash to display information after which the user can turn of the machine.

PowerOff ( ) : void

Powers down the system.

Reboot ( ) : void

Reboot the system. We can reset the system, oddly enough, through the keyboard IO port

Sleep ( ) : void

Puts the system into sleep mode.

Method Details

Freeze() public static method

Freezes the system. Usually used after a crash to display information after which the user can turn of the machine.
public static Freeze ( ) : void
return void

PowerOff() public static method

Powers down the system.
public static PowerOff ( ) : void
return void

Reboot() public static method

Reboot the system. We can reset the system, oddly enough, through the keyboard IO port
public static Reboot ( ) : void
return void

Sleep() public static method

Puts the system into sleep mode.
public static Sleep ( ) : void
return void