comparison graal/com.oracle.jvmci.hotspot.jfr/src/com/oracle/jvmci/hotspot/jfr/events/JFREventProvider.java @ 21789:5b9adb645217

fixed remnants of "graal" names in JVMCI code
author Doug Simon <doug.simon@oracle.com>
date Mon, 08 Jun 2015 20:24:51 +0200
parents 77acf6ba2fc0
children
comparison
equal deleted inserted replaced
21788:c1610658bba0 21789:5b9adb645217
46 if (enabled) { 46 if (enabled) {
47 try { 47 try {
48 /* 48 /*
49 * The "HotSpot JVM" producer is a native producer and we cannot use it. So we 49 * The "HotSpot JVM" producer is a native producer and we cannot use it. So we
50 * create our own. This has the downside that Mission Control is confused and 50 * create our own. This has the downside that Mission Control is confused and
51 * doesn't show Graal's events in the "Code" tab. There are plans to revise the JFR 51 * doesn't show JVMCI events in the "Code" tab. There are plans to revise the JFR
52 * code for JDK 9. 52 * code for JDK 9.
53 */ 53 */
54 Producer producer = new Producer("HotSpot JVM", "Oracle Hotspot JVM", "http://www.oracle.com/hotspot/jvm/"); 54 Producer producer = new Producer("HotSpot JVM", "Oracle Hotspot JVM", "http://www.oracle.com/hotspot/jvm/");
55 producer.register(); 55 producer.register();
56 // Register event classes with Producer. 56 // Register event classes with Producer.