Last change
on this file since 99396 was 85719, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643 [scm fix]
|
-
Property svn:eol-style
set to
native
|
File size:
1006 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Null Debug Agent timer.
|
---|
3 |
|
---|
4 | The debug agent uses the timer so the debugger can break into running programs.
|
---|
5 | If you link against this library you will not be able to break into a running
|
---|
6 | program with the debugger.
|
---|
7 |
|
---|
8 | Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
|
---|
9 |
|
---|
10 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 |
|
---|
12 | **/
|
---|
13 |
|
---|
14 |
|
---|
15 | /**
|
---|
16 | Setup all the hardware needed for the debug agents timer.
|
---|
17 |
|
---|
18 | This function is used to set up debug environment. It may enable interrupts.
|
---|
19 |
|
---|
20 | **/
|
---|
21 | VOID
|
---|
22 | EFIAPI
|
---|
23 | DebugAgentTimerIntialize (
|
---|
24 | VOID
|
---|
25 | )
|
---|
26 | {
|
---|
27 | }
|
---|
28 |
|
---|
29 |
|
---|
30 | /**
|
---|
31 | Set the period for the debug agent timer. Zero means disable the timer.
|
---|
32 |
|
---|
33 | @param[in] TimerPeriodMilliseconds Frequency of the debug agent timer.
|
---|
34 |
|
---|
35 | **/
|
---|
36 | VOID
|
---|
37 | EFIAPI
|
---|
38 | DebugAgentTimerSetPeriod (
|
---|
39 | IN UINT32 TimerPeriodMilliseconds
|
---|
40 | )
|
---|
41 | {
|
---|
42 | }
|
---|
43 |
|
---|
44 |
|
---|
45 | /**
|
---|
46 | Perform End Of Interrupt for the debug agent timer. This is called in the
|
---|
47 | interrupt handler after the interrupt has been processed.
|
---|
48 |
|
---|
49 | **/
|
---|
50 | VOID
|
---|
51 | EFIAPI
|
---|
52 | DebugAgentTimerEndOfInterrupt (
|
---|
53 | VOID
|
---|
54 | )
|
---|
55 | {
|
---|
56 | }
|
---|
57 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.