Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlena Laskavaia2008-05-01 14:25:50 +0000
committerAlena Laskavaia2008-05-01 14:25:50 +0000
commitaf61802112a22b154e054fa8dcf7b49308ca87bd (patch)
treeab61e0d07765b56638c50d738f36943a8626f462 /debug/org.eclipse.cdt.debug.mi.ui
parentad109d4108b19a0f210ff8d30e3b7938752b4863 (diff)
downloadorg.eclipse.cdt-af61802112a22b154e054fa8dcf7b49308ca87bd.tar.gz
org.eclipse.cdt-af61802112a22b154e054fa8dcf7b49308ca87bd.tar.xz
org.eclipse.cdt-af61802112a22b154e054fa8dcf7b49308ca87bd.zip
- added couple more of working catchpoints: fork, vfork and exec
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.ui')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/plugin.properties7
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/plugin.xml12
2 files changed, 18 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties b/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties
index 3b03e472680..90a78aed162 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties
+++ b/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties
@@ -25,4 +25,9 @@ catchCatch.label = Exception Caught
catchThrow.label = Exception Thrown
catchType.label = Event Type
catchSignal.label = Signal Caught
-catchSignal.arg.label = Signal Number \ No newline at end of file
+catchSignal.arg.label = Signal Number
+
+#Note: fork, vfork and exec is not translatable words
+catchFork.label = Stop on fork
+catchVfork.label = Stop on vfork
+catchExec.label = Stop on exec \ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml b/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml
index a8dffdf95de..3f5203d341d 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml
@@ -96,6 +96,18 @@
type="integer" fieldEditor="org.eclipse.jface.preference.IntegerFieldEditor">
</attribute>
</value>
+ <value
+ label="%catchFork.label"
+ value="org.eclipse.cdt.debug.gdb.catch_fork">
+ </value>
+ <value
+ label="%catchVfork.label"
+ value="org.eclipse.cdt.debug.gdb.catch_vfork">
+ </value>
+ <value
+ label="%catchExec.label"
+ value="org.eclipse.cdt.debug.gdb.catch_exec">
+ </value>
</attribute>
</breakpointLabels>
</extension>

Back to the top