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

DefaultFormat does not properly detect "JNI global refs" line in jstack output

XMLWordPrintable

      In open/test/hotspot/jtreg/serviceability/tmtools/jstack/utils/DefaultFormat.java, jniGlobalRefInfoPattern() is incorrect. It's suppose to match something like:

          JNI global refs: 9, weak refs:

      But instead it tries to match on "references" instead of "refs". The end result is messages like the following in the .jtr file when running the 6 jstack tests that use DefaultFormat:

          [Warning] Unknown string: JNI global refs: 9, weak refs: 0

      This also means that JStack.setJniGlobalReferences() is never being called, but since JStack.getJniGlobalReferences() is never used, there is no harm. However, since the functionality for parsing the "JNI global refs" line is there, it would be nice to fix it.

           protected String jniGlobalRefInfoPattern() {
      - return "^JNI\\sglobal\\sreferences:\\s((.+))$";
      + return "^JNI\\sglobal\\srefs:\\s((.+))$";
           }

            Unassigned Unassigned
            cjplummer Chris Plummer
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: