diff options
author | John Cortell | 2007-02-11 14:13:03 +0000 |
---|---|---|
committer | John Cortell | 2007-02-11 14:13:03 +0000 |
commit | 65db07186670f4da998472fce395e5bb4c83102e (patch) | |
tree | d3a3a191cdb9b629d2b32df866c576e722d368ae | |
parent | 8525418ee14e4b62eea62017c5e515aa67b79f1b (diff) | |
download | org.eclipse.cdt-65db07186670f4da998472fce395e5bb4c83102e.tar.gz org.eclipse.cdt-65db07186670f4da998472fce395e5bb4c83102e.tar.xz org.eclipse.cdt-65db07186670f4da998472fce395e5bb4c83102e.zip |
Renamed units parameter name.
-rw-r--r-- | debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlockManagement2.java | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |