Home | History | Annotate | Download | only in lang

Lines Matching defs:exit

109      * finalizers are run if {@link #runFinalizersOnExit finalization-on-exit}
115 * block indefinitely. If shutdown hooks have already been run and on-exit
120 * <p> The <tt>{@link System#exit(int) System.exit}</tt> method is the
139 public void exit(int status) {
166 // Ensure finalization on exit, if requested
186 * thread exits or when the <tt>{@link #exit exit}</tt> (equivalently,
187 * {@link System#exit(int) System.exit}) method is invoked, or
199 * run all uninvoked finalizers if finalization-on-exit has been enabled.
202 * if shutdown was initiated by invoking the <tt>{@link #exit exit}</tt>
224 * program invokes <tt>{@link #exit exit}</tt> the expectation is
225 * that the virtual machine will promptly shut down and exit. When the
228 * which to shut down and exit. It is therefore inadvisable to attempt any
237 * terminates the thread; it does not cause the virtual machine to exit or
268 * @see #exit(int)
311 * @see #exit(int)
334 * <tt>{@link #exit exit}</tt> method, this method does not cause shutdown
336 * finalization-on-exit has been enabled. If the shutdown sequence has
342 * indicates abnormal termination. If the <tt>{@link Runtime#exit
343 * exit}</tt> (equivalently, <tt>{@link System#exit(int)
344 * System.exit}</tt>) method has already been invoked then this
350 * an exit with the specified status
352 * @see #exit
362 * Enable or disable finalization on exit; doing so specifies that the
365 * By default, finalization on exit is disabled.
369 * with 0 as its argument to ensure the exit is allowed.
372 * @param value true to enable finalization on exit, false to disable
380 * method doesn't allow the exit.
382 * @see java.lang.Runtime#exit(int)