2007-07-02 11:34:25 +02:00
|
|
|
/** @file
|
|
|
|
CpuBreakpoint function.
|
|
|
|
|
2010-04-23 18:00:47 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-07-02 11:34:25 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2008-07-25 14:21:57 +02:00
|
|
|
/**
|
|
|
|
Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics.
|
|
|
|
**/
|
2008-10-24 10:18:36 +02:00
|
|
|
|
2017-11-10 05:11:11 +01:00
|
|
|
void __debugbreak (VOID);
|
2007-07-02 11:34:25 +02:00
|
|
|
|
|
|
|
#pragma intrinsic(__debugbreak)
|
|
|
|
|
2008-07-25 14:21:57 +02:00
|
|
|
/**
|
|
|
|
Generates a breakpoint on the CPU.
|
|
|
|
|
|
|
|
Generates a breakpoint on the CPU. The breakpoint must be implemented such
|
|
|
|
that code can resume normal execution after the breakpoint.
|
|
|
|
|
|
|
|
**/
|
2007-07-02 11:34:25 +02:00
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
CpuBreakpoint (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
__debugbreak ();
|
|
|
|
}
|
|
|
|
|