]> git.proxmox.com Git - mirror_edk2.git/commitdiff
retire PeiPerformanceHob.h, all its information has been integrated into Include...
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 23 Feb 2009 02:59:33 +0000 (02:59 +0000)
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 23 Feb 2009 02:59:33 +0000 (02:59 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7565 6f19259b-4bc3-4df7-8a09-765794883524

MdeModulePkg/Include/Guid/PeiPerformanceHob.h [deleted file]

diff --git a/MdeModulePkg/Include/Guid/PeiPerformanceHob.h b/MdeModulePkg/Include/Guid/PeiPerformanceHob.h
deleted file mode 100644 (file)
index 7aef6e4..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/** @file\r
-  This file defines performance guid for the performance entry in the HOB list, \r
-  and define the PEI Performance HOB data structures. \r
-  This hob can be used to store the boot performance data of pei phase.\r
-\r
-Copyright (c) 2006 - 2009, Intel Corporation. <BR>\r
-All rights reserved. This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
-**/\r
-\r
-#ifndef __PEI_PERFORMANCE_HOB_H__\r
-#define __PEI_PERFORMANCE_HOB_H__\r
-\r
-//\r
-// This is the GUID of PEI performance HOB\r
-//\r
-#define PEI_PERFORMANCE_HOB_GUID \\r
-  { 0xec4df5af, 0x4395, 0x4cc9, { 0x94, 0xde, 0x77, 0x50, 0x6d, 0x12, 0xc7, 0xb8 } }\r
-\r
-//\r
-// PEI_PERFORMANCE_STRING_SIZE must be a multiple of 8.\r
-//\r
-#define PEI_PERFORMANCE_STRING_SIZE     8\r
-#define PEI_PERFORMANCE_STRING_LENGTH   (PEI_PERFORMANCE_STRING_SIZE - 1)\r
-\r
-typedef struct {\r
-  EFI_PHYSICAL_ADDRESS  Handle;\r
-  CHAR8                 Token[PEI_PERFORMANCE_STRING_SIZE];   ///> Measured token string name \r
-  CHAR8                 Module[PEI_PERFORMANCE_STRING_SIZE];  ///> Module string name\r
-  UINT64                StartTimeStamp;                       ///> Start time point\r
-  UINT64                EndTimeStamp;                         ///> End time point\r
-} PEI_PERFORMANCE_LOG_ENTRY;\r
-\r
-//\r
-// The header must be aligned at 8 bytes.\r
-// \r
-typedef struct {\r
-  UINT32                NumberOfEntries;  ///> The number of all performance log entries\r
-  UINT32                Reserved;\r
-} PEI_PERFORMANCE_LOG_HEADER;\r
-\r
-\r
-extern EFI_GUID gPeiPerformanceHobGuid;\r
-\r
-#endif\r