Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4094 → Rev 4095

/trunk/kernel/arch/ia32/include/asm.h
56,12 → 56,16
 
/** Halt CPU
*
* Halt the current CPU until interrupt event.
* Halt the current CPU.
*
*/
static inline void cpu_halt(void)
{
asm volatile ("hlt\n");
asm volatile (
"0:\n"
" hlt\n"
" jmp 0b\n"
);
}
 
static inline void cpu_sleep(void)