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

JFR: Cleanup for JFR_ONLY

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P4 P4
    • 23
    • None
    • hotspot
    • None
    • jfr
    • b11

      Some places didn't use JFR_ONLY correctly, we'd better clean up them.

      e.g.

      ```
      void G1NewTracer::initialize() {
        JFR_ONLY(register_jfr_type_constants());
      }
      ```

      should be

      ```
      void G1NewTracer::initialize() {
        JFR_ONLY(register_jfr_type_constants();)
      }
      ```

            ddong Denghui Dong
            ddong Denghui Dong
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: