Lines Matching defs:exit

74      * finalizers are run if {@link #runFinalizersOnExit finalization-on-exit}
80 * block indefinitely. If shutdown hooks have already been run and on-exit
85 * <p> The <tt>{@link System#exit(int) System.exit}</tt> method is the
104 public void exit(int status) {
109 Shutdown.exit(status);
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
134 * run all uninvoked finalizers if finalization-on-exit has been enabled.
137 * if shutdown was initiated by invoking the <tt>{@link #exit exit}</tt>
159 * program invokes <tt>{@link #exit exit}</tt> the expectation is
160 * that the virtual machine will promptly shut down and exit. When the
163 * which to shut down and exit. It is therefore inadvisable to attempt any
172 * terminates the thread; it does not cause the virtual machine to exit or
203 * @see #exit(int)
231 * @see #exit(int)
247 * <tt>{@link #exit exit}</tt> method, this method does not cause shutdown
249 * finalization-on-exit has been enabled. If the shutdown sequence has
255 * indicates abnormal termination. If the <tt>{@link Runtime#exit
256 * exit}</tt> (equivalently, <tt>{@link System#exit(int)
257 * System.exit}</tt>) method has already been invoked then this
263 * an exit with the specified status
265 * @see #exit
279 * Enable or disable finalization on exit; doing so specifies that the
282 * By default, finalization on exit is disabled.
286 * with 0 as its argument to ensure the exit is allowed.
289 * @param value true to enable finalization on exit, false to disable
297 * method doesn't allow the exit.
299 * @see java.lang.Runtime#exit(int)