658659660661662663664665666667668
ExecuteWatchdog watchdog= createWatchdog(); boolean wasKilled= false; int exitValue= executeAsForked(cmd, watchdog); if(null != watchdog) { wasKilled= watchdog.killedProcess(); } actOnResult(exitValue, wasKilled); }
530531532533534535536537538539540