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

Crash in JfrTraceIdLoadBarrier::load(_jclass*)

    XMLWordPrintable

Details

    • jfr
    • b15

    Backports

      Description

        ```
        class JFRDemo {
            public static void main(String[] args) {
                Recording r = new Recording();
                r.enable("MyEvent");
                r.start();

                MyEvent event = new MyEvent();
                event.begin();
                event.clazz = long.class;
                event.commit();
            }
        }

        @Enabled(true)
        @StackTrace(true)
        @Registered(true)
        @Name("MyEvent")
        class MyEvent extends Event {

            @Label("Class")
            public Class clazz;
        }
        ```

        Attachments

          Issue Links

            Activity

              People

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

                Dates

                  Created:
                  Updated:
                  Resolved: