]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Library / DebugAgentLibNull / DebugAgentLibNull.c
CommitLineData
fe92ab29 1/** @file\r
2 Debug Agent library implementition with empty functions.\r
3\r
cd5ebaa0
HT
4 Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
fe92ab29 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
e7af83ae 35 Enable/Disable the interrupt of debug timer and return the interrupt state\r
36 prior to the operation.\r
fe92ab29 37\r
38 If EnableStatus is TRUE, enable the interrupt of debug timer.\r
39 If EnableStatus is FALSE, disable the interrupt of debug timer.\r
40\r
41 @param[in] EnableStatus Enable/Disable.\r
42\r
e7af83ae 43 @return FALSE always.\r
44\r
fe92ab29 45**/\r
e7af83ae 46BOOLEAN\r
fe92ab29 47EFIAPI\r
e7af83ae 48SaveAndSetDebugTimerInterrupt (\r
fe92ab29 49 IN BOOLEAN EnableStatus\r
50 )\r
51{\r
e7af83ae 52 return FALSE;\r
fe92ab29 53}\r
54\r