Share on Facebook Share on Twitter Email
Answers.com

HLT

 

In computer science and more specifically the x86 architecture, HLT (halt) is an assembly language instruction which halts the CPU until the next external interrupt is fired.[1] Most of the commonly used devices use interrupts for their interaction with drivers. The HLT instruction is run when an operating system enters its idle loop and there is no immediate work to be done. In Windows NT for example, this instruction is run in the 'System Idle Process'.

The opcode of HLT is 0xF4.

Contents

Process

Almost every reasonably modern processor instruction set includes an instruction which halts the processor until more work needs to be done. In interrupt driven processors this instruction halts the CPU until an external interrupt is received. On most architectures, executing such an instruction allows the processor to significantly reduce its power usage and heat output, which is why it is commonly used instead of busy waiting or entering spinlock.

Everyday usage

Since issuing the HLT instruction requires ring 0 access, it can only be run by privileged system software, such as the kernel. Because of this, it is often best practice in application programming to use the API provided for that purpose by the operating system when no more work can be done. This is referred to as "yielding" the processor. This allows the kernel to decide if other processes are runnable; if not, it will normally issue the HLT instruction to cut power usage.

See also

References


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics
 
 

 

Copyrights:

Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "HLT" Read more