TianoCore EDK2 master
|
Go to the source code of this file.
Functions | |
VOID EFIAPI | DebugAgentTimerIntialize (VOID) |
VOID EFIAPI | DebugAgentTimerSetPeriod (IN UINT32 TimerPeriodMilliseconds) |
VOID EFIAPI | DebugAgentTimerEndOfInterrupt (VOID) |
Platform specific Debug Agent abstraction for timer used by the agent.
The timer is used by the debugger to break into a running program.
Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file DebugAgentTimerLib.h.
VOID EFIAPI DebugAgentTimerEndOfInterrupt | ( | VOID | ) |
Perform End Of Interrupt for the debug agent timer. This is called in the interrupt handler after the interrupt has been processed.
Definition at line 49 of file DebugAgentTimerLib.c.
VOID EFIAPI DebugAgentTimerIntialize | ( | VOID | ) |
Setup all the hardware needed for the debug agents timer.
This function is used to set up debug environment. It may enable interrupts.
Definition at line 22 of file DebugAgentTimerLib.c.
VOID EFIAPI DebugAgentTimerSetPeriod | ( | IN UINT32 | TimerPeriodMilliseconds | ) |
Set the period for the debug agent timer. Zero means disable the timer.
[in] | TimerPeriodMilliseconds | Frequency of the debug agent timer. |
Definition at line 36 of file DebugAgentTimerLib.c.