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
This commit is contained in:
gikidy
2008-11-19 10:00:35 +00:00
parent 6a0e332d93
commit d80b2f71fc
5 changed files with 154 additions and 15 deletions

View File

@ -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.