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

Cleanup ancient argument processing code

XMLWordPrintable

    • b21

      Noticed in a code review.

      arguments.cpp:

      3489 // Change the default value for flags which have different default values
      3490 // when working with older JDKs.
      3491 #ifdef LINUX
      3492 if (JDK_Version::current().compare_major(6) <= 0 &&
      3493 FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
      3494 FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
      3495 }
      3496 #endif // LINUX

      the above is for Java 6 and below.

      Should check if there is anything else in there like that.

            gziemski Gerard Ziemski
            dholmes David Holmes
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: