mirror of https://github.com/acidanthera/audk.git
Refine some comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7871 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b703aec9f1
commit
40571bfb80
|
@ -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
|
This function performs a quick system memory range test. It leads to quick performance
|
||||||
are sampled sparsely. It leads to quick performance but less
|
but least reliability.
|
||||||
reliability.
|
|
||||||
|
|
||||||
@param StartAddress Start address of the memory range to test.
|
@param StartAddress Start address of the memory range to test.
|
||||||
@param Length Length 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
|
This function tests a system memory range, whose memory units
|
||||||
are sampled extensively. Compared with SparseMemoryTest, it achieves
|
are sampled sparsely. It leads to relatively good performance
|
||||||
more reliability and less performance.
|
and partial reliability.
|
||||||
|
|
||||||
@param StartAddress Start address of the memory range to test.
|
@param StartAddress Start address of the memory range to test.
|
||||||
@param Length Length of the memory range to test.
|
@param Length Length of the memory range to test.
|
||||||
|
|
Loading…
Reference in New Issue