TianoCore EDK2 master
Loading...
Searching...
No Matches
DebugAgentTimerLib.c File Reference

Go to the source code of this file.

Functions

VOID EFIAPI DebugAgentTimerIntialize (VOID)
 
VOID EFIAPI DebugAgentTimerSetPeriod (IN UINT32 TimerPeriodMilliseconds)
 
VOID EFIAPI DebugAgentTimerEndOfInterrupt (VOID)
 

Detailed Description

Null Debug Agent timer.

The debug agent uses the timer so the debugger can break into running programs. If you link against this library you will not be able to break into a running program with the debugger.

Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.

SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file DebugAgentTimerLib.c.

Function Documentation

◆ DebugAgentTimerEndOfInterrupt()

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.

◆ DebugAgentTimerIntialize()

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.

◆ DebugAgentTimerSetPeriod()

VOID EFIAPI DebugAgentTimerSetPeriod ( IN UINT32  TimerPeriodMilliseconds)

Set the period for the debug agent timer. Zero means disable the timer.

Parameters
[in]TimerPeriodMillisecondsFrequency of the debug agent timer.

Definition at line 36 of file DebugAgentTimerLib.c.