Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl
In directory usw-pr-cvs1:/tmp/cvs-serv19809
Modified Files:
VirtualMachineImpl.java
Log Message:
changes in docs
Index: VirtualMachineImpl.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/VirtualMachineImpl.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** VirtualMachineImpl.java 12 Sep 2002 13:58:41 -0000 1.18
--- VirtualMachineImpl.java 12 Sep 2002 17:17:52 -0000 1.19
***************
*** 181,185 ****
* target VM is closed, and the target VM prepares to accept another
* subsequent connection from this profiler or another profiler, including
! * the following tasks: All threads suspended by {@link VirtaulMachineImpl#suspend()}
* are resumed. Garbage collection is re-enabled. Any current method
* invocations executing in the target VM are continued after
--- 181,185 ----
* target VM is closed, and the target VM prepares to accept another
* subsequent connection from this profiler or another profiler, including
! * the following tasks: All threads suspended by {@link #suspendThreads()}
* are resumed. Garbage collection is re-enabled. Any current method
* invocations executing in the target VM are continued after
***************
*** 257,263 ****
*
* Note: this method doesn't stop running JVM, to stop running JVM,
! * use exitVM() method instead.
*
! * @see #isShutdowned(), #exitVM()
*/
public void shutdown() {
--- 257,264 ----
*
* Note: this method doesn't stop running JVM, to stop running JVM,
! * use exit() method instead.
*
! * @see #isShutdown()
! * @see #exit()
*/
public void shutdown() {
***************
*** 279,283 ****
* false (still running, normal operation)
*
! * @see #shutdown(), #exitVM()
*/
public boolean isShutdown() {
--- 280,285 ----
* false (still running, normal operation)
*
! * @see #shutdown()
! * @see #exit(int)
*/
public boolean isShutdown() {
***************
*** 311,314 ****
--- 313,319 ----
/*
* $Log$
+ * Revision 1.19 2002/09/12 17:17:52 vachis
+ * changes in docs
+ *
* Revision 1.18 2002/09/12 13:58:41 michalpise
*
|