On Mar 18, 2011, at 4:59 AM, Konstantin Tokarev wrote: > system("kill -9 <pid>"); You should almost never do this. So much can go wrong with this. It's almost always better to do this instead: ::kill(pid, SIGKILL); --Dave