[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[cdt-patch] Framework for Shared lib deferred breakpoints
|
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.232
diff -u -r1.232 ChangeLog
--- ChangeLog 13 Aug 2003 21:16:23 -0000 1.232
+++ ChangeLog 19 Aug 2003 01:50:27 -0000
@@ -1,3 +1,8 @@
+2003-08-18 Alain Magloire
+
+ ICDISharedLibraryEvent.java:
+ New file, to notify a breakpoint from a shared lib event.
+
2003-08-13 Mikhail Khodjaiants
* ICDIVariableManager.java: removed the 'type' parameter from the 'getVariableObjectAsArray' method
* ICastToArray.java: removed the 'type' parameter from the 'castToArray' method
Index: src/org/eclipse/cdt/debug/core/cdi/ICDICatchEvent.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDICatchEvent.java,v
retrieving revision 1.2
diff -u -r1.2 ICDICatchEvent.java
--- src/org/eclipse/cdt/debug/core/cdi/ICDICatchEvent.java 27 Jan 2003 03:29:30 -0000 1.2
+++ src/org/eclipse/cdt/debug/core/cdi/ICDICatchEvent.java 19 Aug 2003 01:50:27 -0000
@@ -12,5 +12,5 @@
*
* @since Jul 9, 2002
*/
-public interface ICDICatchEvent {
+public interface ICDICatchEvent extends ICDISessionObject {
}
Index: src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryEvent.java
===================================================================
RCS file: src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryEvent.java
diff -N src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryEvent.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryEvent.java 19 Aug 2003 01:50:27 -0000
@@ -0,0 +1,18 @@
+/*
+ *(c) Copyright QNX Software Systems Ltd. 2002.
+ * All Rights Reserved.
+ *
+ */
+
+package org.eclipse.cdt.debug.core.cdi;
+
+
+/**
+ *
+ * Represents an information provided by the session when the program
+ * stopped by a shared libary event.
+ *
+ * @since Aug 18, 2003
+ */
+public interface ICDISharedLibraryEvent extends ICDISessionObject {
+}