diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-31 08:07:11 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-31 08:07:11 +0000 |
commit | 410835874a1ea3d7bb7e4d5e28ec12cb86725b67 (patch) | |
tree | 8dc80ac153a4192e58dd7c26e5e2c473bf9518f6 /MdePkg/Library/BasePerformanceLibNull | |
parent | e4508cd8329d64d1fcc621940a44c50778f04a20 (diff) | |
download | edk2-platforms-410835874a1ea3d7bb7e4d5e28ec12cb86725b67.tar.xz |
Add in the OPTIONAL modifier.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6355 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePerformanceLibNull')
-rw-r--r-- | MdePkg/Library/BasePerformanceLibNull/PerformanceLib.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Library/BasePerformanceLibNull/PerformanceLib.c b/MdePkg/Library/BasePerformanceLibNull/PerformanceLib.c index a5f715f593..93367f8955 100644 --- a/MdePkg/Library/BasePerformanceLibNull/PerformanceLib.c +++ b/MdePkg/Library/BasePerformanceLibNull/PerformanceLib.c @@ -1,7 +1,7 @@ /** @file
Base Performance Library which provides no service.
- Copyright (c) 2006, Intel Corporation<BR>
+ Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. 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
@@ -43,9 +43,9 @@ RETURN_STATUS
EFIAPI
StartPerformanceMeasurement (
- IN CONST VOID *Handle, OPTIONAL
- IN CONST CHAR8 *Token,
- IN CONST CHAR8 *Module,
+ IN CONST VOID *Handle, OPTIONAL
+ IN CONST CHAR8 *Token, OPTIONAL
+ IN CONST CHAR8 *Module, OPTIONAL
IN UINT64 TimeStamp
)
{
@@ -79,8 +79,8 @@ RETURN_STATUS EFIAPI
EndPerformanceMeasurement (
IN CONST VOID *Handle, OPTIONAL
- IN CONST CHAR8 *Token,
- IN CONST CHAR8 *Module,
+ IN CONST CHAR8 *Token, OPTIONAL
+ IN CONST CHAR8 *Module, OPTIONAL
IN UINT64 TimeStamp
)
{
|