]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/X64/CpuBreakpoint.c
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseLib / X64 / CpuBreakpoint.c
CommitLineData
f1baef62 1/** @file\r
2 CpuBreakpoint function.\r
3\r
bb817c56
HT
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
f1baef62 6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
2fc59a00 8 http://opensource.org/licenses/bsd-license.php.\r
f1baef62 9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15\r
42eedea9 16/**\r
17 Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics.\r
18**/\r
7e43ed89 19\r
f1baef62 20void __debugbreak ();\r
21\r
22#pragma intrinsic(__debugbreak)\r
23\r
42eedea9 24/**\r
25 Generates a breakpoint on the CPU.\r
26\r
27 Generates a breakpoint on the CPU. The breakpoint must be implemented such\r
28 that code can resume normal execution after the breakpoint.\r
29\r
30**/\r
f1baef62 31VOID\r
32EFIAPI\r
33CpuBreakpoint (\r
34 VOID\r
35 )\r
36{\r
37 __debugbreak ();\r
38}\r
39\r