diff options
author | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-26 04:36:05 +0000 |
---|---|---|
committer | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-26 04:36:05 +0000 |
commit | 718715141abc0253f369ca55cce3b69c82913ee2 (patch) | |
tree | 019211862f4e6f7b3d68153461d222fd6cfaf668 /MdePkg/Include/Library/TimerLib.h | |
parent | 3e5c323866e6f424f15ab7f59595d8929846354e (diff) | |
download | edk2-718715141abc0253f369ca55cce3b69c82913ee2.tar.gz |
Function headers in .h and .c files synchronized with spec
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6728 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/TimerLib.h')
-rw-r--r-- | MdePkg/Include/Library/TimerLib.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MdePkg/Include/Library/TimerLib.h b/MdePkg/Include/Library/TimerLib.h index 4f920311c6..e24342e1f6 100644 --- a/MdePkg/Include/Library/TimerLib.h +++ b/MdePkg/Include/Library/TimerLib.h @@ -16,6 +16,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #define __TIMER_LIB__
/**
+ Stalls the CPU for at least the given number of microseconds.
+
Stalls the CPU for the number of microseconds specified by MicroSeconds.
@param MicroSeconds The minimum number of microseconds to delay.
@@ -30,6 +32,8 @@ MicroSecondDelay ( );
/**
+ Stalls the CPU for at least the given number of nanoseconds.
+
Stalls the CPU for the number of nanoseconds specified by NanoSeconds.
@param NanoSeconds The minimum number of nanoseconds to delay.
@@ -44,7 +48,8 @@ NanoSecondDelay ( );
/**
- Retrieves the current value of a 64-bit free running performance counter.
+ Retrieves the current value of a 64-bit free running performance counter.
+
The counter can either count up by 1 or count down by 1. If the physical
performance counter counts by a larger increment, then the counter values
must be translated. The properties of the counter can be retrieved from
|