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

Crash in JfrTraceIdLoadBarrier::load(_jclass*)

XMLWordPrintable

    • jfr
    • b15

        ```
        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;
        }
        ```

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

                Created:
                Updated:
                Resolved: