]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c
import Debug Agent Library and null instance in MdeModulePkg.
[mirror_edk2.git] / MdeModulePkg / Library / DebugAgentLibNull / DebugAgentLibNull.c
1 /** @file
2 Debug Agent library implementition with empty functions.
3
4 Copyright (c) 2010, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 /**
16 Initialize debug agent.
17
18 This function is used to set up debug enviroment. It may enable interrupts.
19
20 @param[in] InitFlag Init flag is used to decide initialize process.
21 @param[in] Context Context needed according to InitFlag, it was optional.
22
23 **/
24 VOID
25 EFIAPI
26 InitializeDebugAgent (
27 IN UINT32 InitFlag,
28 IN VOID *Context OPTIONAL
29 )
30 {
31
32 }
33
34 /**
35 Enable/Disable the interrupt of debug timer.
36
37 If EnableStatus is TRUE, enable the interrupt of debug timer.
38 If EnableStatus is FALSE, disable the interrupt of debug timer.
39
40 @param[in] EnableStatus Enable/Disable.
41
42 **/
43 VOID
44 EFIAPI
45 SetDebugTimerInterrupt (
46 IN BOOLEAN EnableStatus
47 )
48 {
49
50 }
51