]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c
import Debug Agent Library and null instance in MdeModulePkg.
[mirror_edk2.git] / MdeModulePkg / Library / DebugAgentLibNull / DebugAgentLibNull.c
CommitLineData
fe92ab29 1/** @file\r
2 Debug Agent library implementition with empty functions.\r
3\r
4 Copyright (c) 2010, Intel Corporation\r
5 All rights reserved. This program and the accompanying materials\r
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
8 http://opensource.org/licenses/bsd-license.php\r
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
16 Initialize debug agent.\r
17\r
18 This function is used to set up debug enviroment. It may enable interrupts.\r
19\r
20 @param[in] InitFlag Init flag is used to decide initialize process.\r
21 @param[in] Context Context needed according to InitFlag, it was optional.\r
22\r
23**/\r
24VOID\r
25EFIAPI\r
26InitializeDebugAgent (\r
27 IN UINT32 InitFlag,\r
28 IN VOID *Context OPTIONAL\r
29 )\r
30{\r
31\r
32}\r
33\r
34/**\r
35 Enable/Disable the interrupt of debug timer.\r
36\r
37 If EnableStatus is TRUE, enable the interrupt of debug timer.\r
38 If EnableStatus is FALSE, disable the interrupt of debug timer.\r
39\r
40 @param[in] EnableStatus Enable/Disable.\r
41\r
42**/\r
43VOID\r
44EFIAPI\r
45SetDebugTimerInterrupt (\r
46 IN BOOLEAN EnableStatus\r
47 )\r
48{\r
49\r
50}\r
51\r