1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Renamed units parameter name.

This commit is contained in:
John Cortell 2007-02-11 14:13:03 +00:00
parent 8525418ee1
commit 65db071866

View file

@ -27,10 +27,10 @@ public interface ICDIMemoryBlockManagement2 extends ICDIMemoryBlockManagement {
* in that this support memory spaces. * in that this support memory spaces.
* @param address * @param address
* @param memorySpaceID - value is meaningful only to the backend * @param memorySpaceID - value is meaningful only to the backend
* @param units - number of units * @param size - number of bytes
* @return a memory block with the specified identifier * @return a memory block with the specified identifier
* @throws CDIException on failure. Reasons include: * @throws CDIException on failure. Reasons include:
*/ */
ICDIMemoryBlock createMemoryBlock(BigInteger address, String memorySpaceID, int units) ICDIMemoryBlock createMemoryBlock(BigInteger address, String memorySpaceID, int size)
throws CDIException; throws CDIException;
} }