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

Clean pending exception before running dynamic CDS dump

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 17
    • 16, 17
    • hotspot
    • b22

      The following two "if" blocks should be swapped. Otherwise a pre-existing exception may cause MetaspaceShared::link_and_cleanup_shared_classes() to fail.

      void JavaThread::invoke_shutdown_hooks() {
        HandleMark hm(this);

        // Link all classes for dynamic CDS dumping before vm exit.
        // Same operation is being done in JVM_BeforeHalt for handling the
        // case where the application calls System.exit().
        if (DynamicDumpSharedSpaces) {
          MetaspaceShared::link_and_cleanup_shared_classes(this);
        }

        // We could get here with a pending exception, if so clear it now.
        if (this->has_pending_exception()) {
          this->clear_pending_exception();
        }

            minqi Yumin Qi
            iklam Ioi Lam
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: