]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add in a new debug mask bit EFI_D_DEPEX. It is used to enable the debug message relat...
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 3 Nov 2008 10:58:14 +0000 (10:58 +0000)
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 3 Nov 2008 10:58:14 +0000 (10:58 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6362 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Library/DebugLib.h

index 828cd441cf22b60bce5d242e121cfa71b96c3d08..134952c6659b2696a61c11c4e5791afd050cabde 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Public include file for the Debug Library\r
 \r
-  Copyright (c) 2006, Intel Corporation                                                         \r
+  Copyright (c) 2006 - 2008, Intel Corporation                                                         \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
@@ -35,6 +35,7 @@
 #define DEBUG_POOL      0x00000010  // Alloc & Free's\r
 #define DEBUG_PAGE      0x00000020  // Alloc & Free's\r
 #define DEBUG_INFO      0x00000040  // Verbose\r
+#define DEBUG_DEPEX     0x00000080  // PEI or DXE Dependency Evaluation\r
 #define DEBUG_VARIABLE  0x00000100  // Variable\r
 #define DEBUG_BM        0x00000400  // Boot Manager\r
 #define DEBUG_BLKIO     0x00001000  // BlkIo Driver\r
@@ -54,6 +55,7 @@
 #define EFI_D_POOL      DEBUG_POOL\r
 #define EFI_D_PAGE      DEBUG_PAGE\r
 #define EFI_D_INFO      DEBUG_INFO\r
+#define EFI_D_DEPEX     DEBUG_DEPEX\r
 #define EFI_D_VARIABLE  DEBUG_VARIABLE\r
 #define EFI_D_BM        DEBUG_BM\r
 #define EFI_D_BLKIO     DEBUG_BLKIO\r