[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[cdt-patch] Signal manager
|
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.116
diff -u -r1.116 ChangeLog
--- ChangeLog 31 Jan 2003 22:38:13 -0000 1.116
+++ ChangeLog 3 Feb 2003 19:29:40 -0000
@@ -1,3 +1,10 @@
+2003-02-03 Alain Magloire
+
+ * src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java:
+ (getDescription): new Method replace getMeaning().
+ (isStopSet): new method.
+ (isIgnore): new method.
+
2003-01-31 Mikhail Khodjaiants
Implementing the 'Signals' view.
* ICSharedLibraryManager.java
Index: src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java,v
retrieving revision 1.1
diff -u -r1.1 ICDISignal.java
--- src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java 21 Jan 2003 21:40:32 -0000 1.1
+++ src/org/eclipse/cdt/debug/core/cdi/model/ICDISignal.java 3 Feb 2003 19:29:41 -0000
@@ -26,6 +26,28 @@
*
* @return the meaning of this signal
*/
- String getMeaning();
+ String getDescription();
+ /**
+ * if false means program will see the signal.
+ * Otherwise program does not know.
+ *
+ * @return boolean
+ */
+ boolean isIgnore();
+
+ /**
+ * Means reenter debugger if this signal happens
+ *
+ * Method isStopSet.
+ * @return boolean
+ */
+ boolean isStopSet();
+
+ /**
+ * Continue program giving it this signal.
+ *
+ * Method signal.
+ */
+ void signal();
}