Index: Execute.java
===================================================================
RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Execute.java,v
retrieving revision 1.25
diff -u -r1.25 Execute.java
--- Execute.java	2001/11/15 08:02:40	1.25
+++ Execute.java	2001/11/28 20:13:14
@@ -405,6 +405,10 @@
         if (watchdog != null) watchdog.stop();
         streamHandler.stop();
         if (watchdog != null) watchdog.checkException();
+        //test for and handle a forced process death
+        if (watchdog != null && watchdog.killedProcess()) {
+            project.log("Timeout: killed the sub-process",Project.MSG_WARN); 
+        }
         return getExitValue();
     }
 

