Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-08-16 18:56:37 +0000
committerEugene Tarassov2013-08-16 18:56:37 +0000
commitcd9740b227a70b2510474a855c8fdedb022f4824 (patch)
treef8752bbea0edd99d469e2b5498c591e77a52eace /plugins
parent446c5a8559c4305b5143dc5a7158b05ca8b2822f (diff)
downloadorg.eclipse.tcf-cd9740b227a70b2510474a855c8fdedb022f4824.tar.gz
org.eclipse.tcf-cd9740b227a70b2510474a855c8fdedb022f4824.tar.xz
org.eclipse.tcf-cd9740b227a70b2510474a855c8fdedb022f4824.zip
TCF Core: added missing declarations for Processes.start arguments: SigDontStop, SigDontPass
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IProcessesV1.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IProcessesV1.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IProcessesV1.java
index 4090f00cd..9da3dba6b 100644
--- a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IProcessesV1.java
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/IProcessesV1.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -33,7 +33,11 @@ public interface IProcessesV1 extends IProcesses {
/** Boolean, stop at main() */
START_STOP_AT_MAIN = "StopAtMain",
/** Boolean, Use pseudo-terminal for the process standard I/O */
- START_USE_TERMINAL = "UseTerminal";
+ START_USE_TERMINAL = "UseTerminal",
+ /** Bit set of signals that should not be intercepted by the debugger */
+ START_SIG_DONT_STOP = "SigDontStop",
+ /** Bit set of signals that should not be delivered to the process */
+ START_SIG_DONT_PASS = "SigDontPass";
/**
* Start a new process on remote machine.

Back to the top