jdk/src/share/classes/java/lang/Runtime.java
changeset 18546 862067c6481c
parent 16906 44dfee24cb71
child 18776 c17100862d86
equal deleted inserted replaced
18545:5f4e734fad1b 18546:862067c6481c
   115      * <p> The Java virtual machine <i>shuts down</i> in response to two kinds
   115      * <p> The Java virtual machine <i>shuts down</i> in response to two kinds
   116      * of events:
   116      * of events:
   117      *
   117      *
   118      *   <ul>
   118      *   <ul>
   119      *
   119      *
   120      *   <p> <li> The program <i>exits</i> normally, when the last non-daemon
   120      *   <li> The program <i>exits</i> normally, when the last non-daemon
   121      *   thread exits or when the <tt>{@link #exit exit}</tt> (equivalently,
   121      *   thread exits or when the <tt>{@link #exit exit}</tt> (equivalently,
   122      *   <tt>{@link System#exit(int) System.exit}</tt>) method is invoked, or
   122      *   {@link System#exit(int) System.exit}) method is invoked, or
   123      *
   123      *
   124      *   <p> <li> The virtual machine is <i>terminated</i> in response to a
   124      *   <li> The virtual machine is <i>terminated</i> in response to a
   125      *   user interrupt, such as typing <tt>^C</tt>, or a system-wide event,
   125      *   user interrupt, such as typing <tt>^C</tt>, or a system-wide event,
   126      *   such as user logoff or system shutdown.
   126      *   such as user logoff or system shutdown.
   127      *
   127      *
   128      *   </ul>
   128      *   </ul>
   129      *
   129      *