summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/BaseMemoryLib.h
diff options
context:
space:
mode:
authorgikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-19 10:00:35 +0000
committergikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-19 10:00:35 +0000
commitd80b2f71fc3c303fa8d0f5010a33b690b1285e7c (patch)
treef63c97a6fb097bef55776fbca290785d78a3315f /MdePkg/Include/Library/BaseMemoryLib.h
parent6a0e332d933a6fd20d9ff417c6b59a7b438708ee (diff)
Synchronize the MdePkg\Include\Library\BaseMemoryLib.h,
CacheMaintenance.h,CpuLib.h,DebugLib.h,DevicePathLib.h with the MDE_Library_Spec. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6629 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/BaseMemoryLib.h')
-rw-r--r--MdePkg/Include/Library/BaseMemoryLib.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/MdePkg/Include/Library/BaseMemoryLib.h b/MdePkg/Include/Library/BaseMemoryLib.h
index abc3bb209..973bc2b63 100644
--- a/MdePkg/Include/Library/BaseMemoryLib.h
+++ b/MdePkg/Include/Library/BaseMemoryLib.h
@@ -1,5 +1,9 @@
/** @file
- Provides copy memory, fill memory, zero memory, and GUID functions.
+ Provides copy memory, fill memory, zero memory, and GUID functions.
+
+ The Base Memory Library provides optimized implementions for common memory-based operations.
+ These functions should be used in place of coding your own loops to do equivalent common functions.
+ This allows optimized library implementations to help increase performance.
Copyright (c) 2006 - 2008, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -47,7 +51,7 @@ CopyMem (
@param Buffer Memory to set.
@param Length Number of bytes to set.
- @param Value Value of the set operation.
+ @param Value Value with which to fill Length bytes of Buffer.
@return Buffer.