summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseDebugLibNull
diff options
context:
space:
mode:
authorxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-04 13:39:18 +0000
committerxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2008-09-04 13:39:18 +0000
commitad400b07b8ab766b5fc601b929aaebc4a60dc05d (patch)
tree3b14d5530a59ba0cb9385bba3fb7440ac9cabdb8 /MdePkg/Library/BaseDebugLibNull
parent8ea58c070785281087061b0f706b03cf873949c7 (diff)
downloadedk2-ad400b07b8ab766b5fc601b929aaebc4a60dc05d.tar.gz
edk2-ad400b07b8ab766b5fc601b929aaebc4a60dc05d.tar.bz2
edk2-ad400b07b8ab766b5fc601b929aaebc4a60dc05d.zip
Update MDE Library instances according to code review comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5823 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseDebugLibNull')
-rw-r--r--MdePkg/Library/BaseDebugLibNull/DebugLib.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/MdePkg/Library/BaseDebugLibNull/DebugLib.c b/MdePkg/Library/BaseDebugLibNull/DebugLib.c
index a540411bca..9259ab6432 100644
--- a/MdePkg/Library/BaseDebugLibNull/DebugLib.c
+++ b/MdePkg/Library/BaseDebugLibNull/DebugLib.c
@@ -14,14 +14,9 @@
#include <Base.h>
-
-//
-// The Library classes this module produced
-//
#include <Library/DebugLib.h>
/**
-
Prints a debug message to the debug output device if the specified error level is enabled.
If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print
@@ -45,7 +40,6 @@ DebugPrint (
/**
-
Prints an assert message containing a filename, line number, and description.
This may be followed by a breakpoint or a dead loop.
@@ -79,7 +73,6 @@ DebugAssert (
/**
-
Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.
This function fills Length bytes of Buffer with the value specified by
@@ -107,7 +100,6 @@ DebugClearMemory (
/**
-
Returns TRUE if ASSERT() macros are enabled.
This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of
@@ -130,8 +122,7 @@ DebugAssertEnabled (
/**
-
- Returns TRUE if DEBUG()macros are enabled.
+ Returns TRUE if the DEBUG() macro is enabled.
This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of
PcdDebugProperyMask is set. Otherwise FALSE is returned.
@@ -153,8 +144,7 @@ DebugPrintEnabled (
/**
-
- Returns TRUE if DEBUG_CODE()macros are enabled.
+ Returns TRUE if the DEBUG_CODE() macros are enabled.
This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of
PcdDebugProperyMask is set. Otherwise FALSE is returned.
@@ -176,8 +166,7 @@ DebugCodeEnabled (
/**
-
- Returns TRUE if DEBUG_CLEAR_MEMORY()macro is enabled.
+ Returns TRUE if the DEBUG_CLEAR_MEMORY() macro is enabled.
This function returns TRUE if the DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of
PcdDebugProperyMask is set. Otherwise FALSE is returned.