From 40571bfb80ae04f78ae31d4bb558ea4bc975a47c Mon Sep 17 00:00:00 2001 From: xli24 Date: Fri, 13 Mar 2009 03:10:43 +0000 Subject: [PATCH] Refine some comments. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7871 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Include/Library/BaseMemoryTestLib.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/MdeModulePkg/Include/Library/BaseMemoryTestLib.h b/MdeModulePkg/Include/Library/BaseMemoryTestLib.h index 0dad0b2d16..12c043c193 100644 --- a/MdeModulePkg/Include/Library/BaseMemoryTestLib.h +++ b/MdeModulePkg/Include/Library/BaseMemoryTestLib.h @@ -17,11 +17,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. /** - Test a system memory range with sparsely sampled memory units. + Perform a quick system memory range test. - This function tests a system memory range, whose memory units - are sampled sparsely. It leads to quick performance but less - reliability. + This function performs a quick system memory range test. It leads to quick performance + but least reliability. @param StartAddress Start address of the memory range to test. @param Length Length of the memory range to test. @@ -40,11 +39,11 @@ QuickMemoryTest ( ); /** - Test a system memory range with extensively sampled memory units. + Test a system memory range with sparsely sampled memory units. This function tests a system memory range, whose memory units - are sampled extensively. Compared with SparseMemoryTest, it achieves - more reliability and less performance. + are sampled sparsely. It leads to relatively good performance + and partial reliability. @param StartAddress Start address of the memory range to test. @param Length Length of the memory range to test.