jdk/src/solaris/classes/sun/tools/attach/SolarisVirtualMachine.java
/**
* Detach from the target VM
*/
public void detach() throws IOException {
{- -------------------------------------------
(1) door 通信用のファイルを閉じ, fd フィールドも -1 にリセットしておく.
(See: sun.tools.attach.SolarisVirtualMachine.execute())
---------------------------------------- -}
synchronized (this) {
if (fd != -1) {
close(fd);
fd = -1;
}
}
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.