diff options
Diffstat (limited to 'MdeModulePkg/Library')
-rw-r--r-- | MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c b/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c index cf945d01ad..58c756d4d4 100644 --- a/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c +++ b/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.c @@ -32,20 +32,23 @@ InitializeDebugAgent ( }
/**
- Enable/Disable the interrupt of debug timer.
+ Enable/Disable the interrupt of debug timer and return the interrupt state
+ prior to the operation.
If EnableStatus is TRUE, enable the interrupt of debug timer.
If EnableStatus is FALSE, disable the interrupt of debug timer.
@param[in] EnableStatus Enable/Disable.
+ @return FALSE always.
+
**/
-VOID
+BOOLEAN
EFIAPI
-SetDebugTimerInterrupt (
+SaveAndSetDebugTimerInterrupt (
IN BOOLEAN EnableStatus
)
{
-
+ return FALSE;
}
|