Re: Destroy a process
bengali wrote:
Hi,
I have to create processes within a Java class on Solaris 8->10 and I
noticed that I was unable to kill the process I created.
To test, i created a sample test.sh file that just does a sleep 1000000.
I call it from my Java class.
The problem is that when my Jvm exits, the process of the shell script
is detached from the process of my Jvm but still runs. Even if i
explicitly call
the destroy() method on my process reference.
I tried registering a JVM shutdowhook like below but it doesn't have
any effect.
Do you know anyworkaround ? How would you force killing processes
launched from a Jvm ?
What state is the resulting process left in; is it a zombie process?
If so, that means that the process hasn't been "reaped", i.e its exit status is
still being held by the kernel so it can be returned, but the parent process
isn't waiting for it to exit. The process doesn't really exist, it has
terminated and gone away. All that remains is the "zombie", an entry in the
kernel process table.
You can probably get around this situation by calling Process.exitValue() after
Process.destroy(), which should reap the process exit status and allow it to
disappear completely. (This is speculation on my part... I haven't tried it,
but it's what I would try were I to encounter this situation).
--
Nigel Wade, System Administrator, Space Plasma Physics Group,
University of Leicester, Leicester, LE1 7RH, UK
E-mail : nmw@ion.le.ac.uk
Phone : +44 (0)116 2523548, Fax : +44 (0)116 2523555