summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseTimerLibNullTemplate
diff options
context:
space:
mode:
authorxdu2 <xdu2@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-25 05:59:17 +0000
committerxdu2 <xdu2@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-25 05:59:17 +0000
commitb9610b9cb5b34b202251d8e08c02a788240e4cdd (patch)
tree09775a466b5315657279f1f51625c6466412af61 /MdePkg/Library/BaseTimerLibNullTemplate
parent6e5ed099afee619553a1eb1bea79b1f99658ec84 (diff)
downloadedk2-b9610b9cb5b34b202251d8e08c02a788240e4cdd.tar.gz
edk2-b9610b9cb5b34b202251d8e08c02a788240e4cdd.tar.bz2
edk2-b9610b9cb5b34b202251d8e08c02a788240e4cdd.zip
Add new API GetTimeInNanoSecond() to TimerLib to convert elapsed ticks to time in unit of nanoseconds.
Signed-off-by: xdu2 Reviewed-by: mdkinney git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12206 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseTimerLibNullTemplate')
-rw-r--r--MdePkg/Library/BaseTimerLibNullTemplate/TimerLibNull.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseTimerLibNullTemplate/TimerLibNull.c b/MdePkg/Library/BaseTimerLibNullTemplate/TimerLibNull.c
index 0c79b21f6f..d06cd0f399 100644
--- a/MdePkg/Library/BaseTimerLibNullTemplate/TimerLibNull.c
+++ b/MdePkg/Library/BaseTimerLibNullTemplate/TimerLibNull.c
@@ -1,7 +1,7 @@
/** @file
A non-functional instance of the Timer Library.
- Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -111,3 +111,24 @@ GetPerformanceCounterProperties (
return (UINT64)(-1);
}
+
+/**
+ Converts elapsed ticks of performance counter to time in nanoseconds.
+
+ This function converts the elapsed ticks of running performance counter to
+ time value in unit of nanoseconds.
+
+ @param Ticks The number of elapsed ticks of running performance counter.
+
+ @return The elapsed time in nanoseconds.
+
+**/
+UINT64
+EFIAPI
+GetTimeInNanoSecond (
+ IN UINT64 Ticks
+ )
+{
+ ASSERT (FALSE);
+ return 0;
+}