Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8289824

Simplification in java.lang.Runtime::exit

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • 20
    • core-libs
    • None
    • behavioral
    • minimal
    • Hide
      This change removes the potential to invoke `exit` with a non-zero exit code when the shutdown hooks have already been run, and have the JVM terminate with that non-zero exit code (rather than the exit code that the JVM is already terminating with). Ultimately the window of opportunity that currently allows for this is very narrow and performing such an action is racy, so cannot be depended upon.
      Show
      This change removes the potential to invoke `exit` with a non-zero exit code when the shutdown hooks have already been run, and have the JVM terminate with that non-zero exit code (rather than the exit code that the JVM is already terminating with). Ultimately the window of opportunity that currently allows for this is very narrow and performing such an action is racy, so cannot be depended upon.
    • Java API
    • SE

      Summary

      Simplify and clarify the behaviour of the reentrancy contract for Runtime::exit, so as to make it simpler and more straightforward to understand (and implement).

      Problem

      Earlier versions of the platform allowed for a small window between running the shutdown hooks and calling halt, where another thread could slip in its own call to exit. This was to facilitate Runtime::runFinalizersOnExit, which has since been removed (see JDK-8198249). Following on from that, it is now possible to revisit the reentrancy contract of Runtime::exit, so as to make it more straightforward and simpler to understand (and implement).

      Solution

      Update the specification of Runtime::exit to:

      1. Remove the esoteric sentence that allows for a small window between running the shutdown hooks and calling halt.

      2. Clarify the behaviour of subsequent invocations, specifically the fact that only one invocation can proceed with the shutdown sequence and terminate the VM with the given status code.

      3. Clarify the danger of invocations from shutdown hooks that can lead to a deadlock.

      Specification

      Amend the following paragraph of java.lang.Runtime::exit:

         ...
      -  * <p> If this method is invoked after all shutdown hooks have already
      -  * been run and the status is nonzero then this method halts the
      -  * virtual machine with the given status code. Otherwise, this method
      -  * blocks indefinitely.
      +  * <p> Invocations of this method are serialized such that only one
      +  * invocation will actually proceed with the shutdown sequence and
      +  * terminate the VM with the given status code. All other invocations
      +  * will block indefinitely. If this method is invoked from a shutdown
      +  * hook the system will deadlock.
         ...
         public void exit(int status) { ... }

            chegar Chris Hegarty
            kbarrett Kim Barrett
            Alan Bateman, David Holmes, Kim Barrett
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: