2019-09-03 11:58:42 +02:00
|
|
|
/** @file
|
|
|
|
Base Library CPU Functions for all architectures.
|
|
|
|
|
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <Base.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
Executes an infinite loop.
|
|
|
|
|
|
|
|
Forces the CPU to execute an infinite loop. A debugger may be used to skip
|
|
|
|
past the loop and the code that follows the loop must execute properly. This
|
|
|
|
implies that the infinite loop must not cause the code that follow it to be
|
|
|
|
optimized away.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
CpuDeadLoop (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
volatile UINTN Index;
|
|
|
|
|
2021-04-26 18:57:04 +02:00
|
|
|
for (Index = 0; Index == 0;) {
|
|
|
|
CpuPause();
|
|
|
|
}
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|