2007-10-05 20:47:03 +02:00
|
|
|
/** @file
|
|
|
|
CpuSleep function.
|
|
|
|
|
2010-04-23 17:35:13 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-10-05 20:47:03 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
2010-06-11 02:02:51 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-10-05 20:47:03 +02:00
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2008-07-14 11:01:34 +02:00
|
|
|
/**
|
|
|
|
Places the CPU in a sleep state until an interrupt is received.
|
2007-10-05 20:47:03 +02:00
|
|
|
|
2008-07-14 11:01:34 +02:00
|
|
|
Places the CPU in a sleep state until an interrupt is received. If interrupts
|
|
|
|
are disabled prior to calling this function, then the CPU will be placed in a
|
|
|
|
sleep state indefinitely.
|
|
|
|
|
|
|
|
**/
|
2007-10-05 20:47:03 +02:00
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
CpuSleep (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
_asm {
|
|
|
|
hlt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|