diff options
author | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-25 07:33:02 +0000 |
---|---|---|
committer | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-25 07:33:02 +0000 |
commit | ed384ef31cff0681d724847c684476aed214917c (patch) | |
tree | 5ab7db3035f36e556b2b6bdb8dfde327f241d001 /MdePkg/Include | |
parent | 26015d229452d2916521506cad5cd3647474cf8d (diff) | |
download | edk2-platforms-ed384ef31cff0681d724847c684476aed214917c.tar.xz |
1. Updated declaration of timer functions according to latest MWG.
2. Updated coding style.
3. Updated the algorithm used in delay functions to handle timer counter wrap-around.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1089 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Library/TimerLib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Library/TimerLib.h b/MdePkg/Include/Library/TimerLib.h index 4b12152e6b..8523bd0dfb 100644 --- a/MdePkg/Include/Library/TimerLib.h +++ b/MdePkg/Include/Library/TimerLib.h @@ -24,7 +24,7 @@ @param MicroSeconds The minimum number of microseconds to delay.
- @return Return value depends on implementation.
+ @return MicroSeconds
**/
UINTN
@@ -40,7 +40,7 @@ MicroSecondDelay ( @param NanoSeconds The minimum number of nanoseconds to delay.
- @return Return value depends on implementation.
+ @return NanoSeconds
**/
UINTN
|