RE: How to kill child process with control-c

2009-05-05 Thread viet nguyen
Thanks for the quick replies. As a workaround I can probably duplicate what jmeter.sh does in Ant, ie specifying all the GC flags, heap sizes, etc and launch java directly. mgainty wrote: > > > your term utility does not have cascade capability > and calling ant exec task creates another p

RE: How to kill child process with control-c

2009-05-05 Thread Martin Gainty
your term utility does not have cascade capability and calling ant exec task creates another process use java instead with spawn="false" fork="false" http://ant.apache.org/manual/CoreTasks/java.html HTH Martin __ Disclaimer and Confidentiality/Ve

Re: How to kill child process with control-c

2009-05-05 Thread Francis Galiegue
Le mardi 05 mai 2009, viet nguyen a écrit : > > I have an exec task (spawn=false) that calls jmeter.sh/jmeter.bat which in > turn launches a java process. Control-C only kills ant but does nothing to > jmeter java process. I can confirm that jmeter app doesn't have any special > shutdown hooks a