summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/TimerLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Library/TimerLib.h')
-rw-r--r--MdePkg/Include/Library/TimerLib.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/MdePkg/Include/Library/TimerLib.h b/MdePkg/Include/Library/TimerLib.h
index c42f894186..ecc3ad3ff7 100644
--- a/MdePkg/Include/Library/TimerLib.h
+++ b/MdePkg/Include/Library/TimerLib.h
@@ -1,7 +1,7 @@
/** @file
Provides calibrated delay and performance counter services.
-Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 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
@@ -94,4 +94,21 @@ GetPerformanceCounterProperties (
OUT UINT64 *EndValue OPTIONAL
);
+/**
+ 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
+ );
+
#endif