diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlockManagement2.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlockManagement2.java index fbda1058bc7..a35f3d59d25 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlockManagement2.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlockManagement2.java @@ -27,10 +27,10 @@ public interface ICDIMemoryBlockManagement2 extends ICDIMemoryBlockManagement { * in that this support memory spaces. * @param address * @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 * @throws CDIException on failure. Reasons include: */ - ICDIMemoryBlock createMemoryBlock(BigInteger address, String memorySpaceID, int units) + ICDIMemoryBlock createMemoryBlock(BigInteger address, String memorySpaceID, int size) throws CDIException; }