diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-29 01:00:34 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-29 01:00:34 +0000 |
commit | 045c8b9a4d7672da1e2c493cdfefb8bb0099434e (patch) | |
tree | bae3583ad98f85432dfcf5513124f241d2839cae /MdeModulePkg/Universal/Metronome/Metronome.c | |
parent | 6296e67c8535d01168bdc1f8ca8d1a9325b2ef1d (diff) | |
download | edk2-045c8b9a4d7672da1e2c493cdfefb8bb0099434e.zip edk2-045c8b9a4d7672da1e2c493cdfefb8bb0099434e.tar.gz edk2-045c8b9a4d7672da1e2c493cdfefb8bb0099434e.tar.bz2 |
add Metronome.inf into MdeModulePkg.dsc.
updated doxgen format file header for Metronome module.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6280 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Metronome/Metronome.c')
-rw-r--r-- | MdeModulePkg/Universal/Metronome/Metronome.c | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/MdeModulePkg/Universal/Metronome/Metronome.c b/MdeModulePkg/Universal/Metronome/Metronome.c index 4b33db9..9ce6c9c 100644 --- a/MdeModulePkg/Universal/Metronome/Metronome.c +++ b/MdeModulePkg/Universal/Metronome/Metronome.c @@ -1,19 +1,5 @@ -/*++
-
-Copyright (c) 2008, Intel Corporation
-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
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-Module Name:
-
- Metronome.c
-
-Abstract:
+/** @file
+ Produces the Metronome Architectural Protocol on top of Timer Library.
This is a generic implementation of the Metronome Architectural Protocol that
layers on top of an instance of the Timer Library. The Timer Library provides
@@ -25,7 +11,16 @@ Abstract: overflows that could occur for long delays if only nanoseconds were used and also
provides the greatest accuracy for small delays.
---*/
+Copyright (c) 2008, Intel Corporation
+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
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+**/
#include <PiDxe.h>
#include <Protocol/Metronome.h>
|