When you fire off the process, exec returns the PID, so try something like this:<br>
<br>
set tmpPID [exec newProcess &]<br>
<br>
then, as part of your cleanup, include:<br>
<br>
exec /bin/kill $tmpPID<br>
<br>
which should kill newProcess.<br>
<br>
Good luck!