summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c
diff options
context:
space:
mode:
authorgikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-25 07:25:14 +0000
committergikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-25 07:25:14 +0000
commiteb1c78dbb988654f46cc111d5b4a9dabd5578c1f (patch)
tree039ee0ddf5b512386c3c0bc3d2f0a021a9552a8d /MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c
parent13e4e1b76ad3db76471c767a009f90b0ed84384f (diff)
downloadedk2-platforms-eb1c78dbb988654f46cc111d5b4a9dabd5578c1f.tar.xz
Synchronize function comment in MdePkg\Library\BaseMemoryLib.h,CacheMaintenanceLib.h with the c file instance of this functions.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6721 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c')
-rw-r--r--MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c b/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c
index 5bd50f4a8d..831e491b50 100644
--- a/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c
+++ b/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c
@@ -2,6 +2,7 @@
CopyMem() implementation.
The following BaseMemoryLib instances contain the same copy of this file:
+
BaseMemoryLib
BaseMemoryLibMmx
BaseMemoryLibSse2
@@ -22,9 +23,6 @@
**/
-
-
-
#include "MemLibInternals.h"
/**
@@ -33,8 +31,9 @@
This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
DestinationBuffer. The implementation must be reentrant, and it must handle the case
where SourceBuffer overlaps DestinationBuffer.
- If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
- If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
+
+ If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
+ If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
@param DestinationBuffer Pointer to the destination buffer of the memory copy.
@param SourceBuffer Pointer to the source buffer of the memory copy.