Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] ICDIBreakpointManager.createLocation()

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.87
diff -u -r1.87 ChangeLog
--- ChangeLog	2 Jan 2003 20:57:55 -0000	1.87
+++ ChangeLog	6 Jan 2003 16:29:30 -0000
@@ -1,3 +1,8 @@
+2003-01-06 Alain Magloire
+
+	* src/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManager.java (createLocation):
+	New method to take an address.
+
 2003-01-02 Mikhail Khodjaiants
 	The 'DisassemblyStorage' class implements an adapter for the 'IResource' class and returns the executable file.
 	* IExecFileInfo.java: added a new method: 'getExecFile'
Index: src/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManager.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManager.java,v
retrieving revision 1.4
diff -u -r1.4 ICDIBreakpointManager.java
--- src/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManager.java	20 Sep 2002 17:12:06 -0000	1.4
+++ src/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManager.java	6 Jan 2003 16:29:30 -0000
@@ -121,4 +121,9 @@
 	 */
 	ICDILocation createLocation(String file, String function, int line);
 
+	/**
+	 * Returns a ICDILocation
+	 */
+	ICDILocation createLocation(long address);
+
 }



Back to the top