diff options
Diffstat (limited to 'MdePkg/Library/BaseDebugLibNull/DebugLib.c')
-rw-r--r-- | MdePkg/Library/BaseDebugLibNull/DebugLib.c | 17 |
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.
|