Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 165948 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/tptp/platform/execution/client/core/internal/ProcessImpl.java (-5 / +5 lines)
Lines 582-587 Link Here
582
	   		if (!processCmdHandler.waitResponce(Constants.processStarted_Cmd)) {
582
	   		if (!processCmdHandler.waitResponce(Constants.processStarted_Cmd)) {
583
        		throw new TimeoutException(Constants.TPTP_PLATFORM_EXEC_MSG33);		
583
        		throw new TimeoutException(Constants.TPTP_PLATFORM_EXEC_MSG33);		
584
	   		}
584
	   		}
585
586
			Enumeration listenerList=_listeners.elements();
587
			while(listenerList.hasMoreElements()) {
588
				((IProcessListener)listenerList.nextElement()).processLaunched(this);
589
			}
585
		 } catch (IOException e) {
590
		 } catch (IOException e) {
586
			 e.printStackTrace();
591
			 e.printStackTrace();
587
		 }
592
		 }
Lines 890-900 Link Here
890
				long processId = Long.parseLong(s);
895
				long processId = Long.parseLong(s);
891
				process.setProcessId(processId);
896
				process.setProcessId(processId);
892
			}
897
			}
893
894
			Enumeration listenerList=_listeners.elements();
895
			while(listenerList.hasMoreElements()) {
896
				((IProcessListener)listenerList.nextElement()).processLaunched(process);
897
			}
898
		}
898
		}
899
	
899
	
900
		private void processExited(Hashtable commandHash) {
900
		private void processExited(Hashtable commandHash) {

Return to bug 165948