This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: PATCH: waitpid in natPosixProcess.cc
>>>>> "Casey" == Casey Marshall <csm@gnu.org> writes:
Casey> Also: shouldn't there be a finalize method in this class, that
Casey> destroys and waits on the process?
Actually Process is explicitly defined otherwise:
The subprocess is not killed when there are no more references to the
Process object, but rather the subprocess continues executing
asynchronously.
See also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11801
This has some suggestions for what to do; nothing very pleasant though.
Tom