File tree 1 file changed +12
-6
lines changed
src/jdk.jfr/share/classes/jdk/jfr/internal
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -328,17 +328,23 @@ static long nanosToTicks(long nanos) {
328
328
329
329
static synchronized EventHandler getHandler (Class <? extends jdk .internal .event .Event > eventClass ) {
330
330
Utils .ensureValidEventSubclass (eventClass );
331
- Object handler = JVM .getJVM ().getHandler (eventClass );
332
- if (handler == null || handler instanceof EventHandler ) {
333
- return (EventHandler ) handler ;
331
+ try {
332
+ Field f = eventClass .getDeclaredField (EventInstrumentation .FIELD_EVENT_HANDLER );
333
+ SecuritySupport .setAccessible (f );
334
+ return (EventHandler ) f .get (null );
335
+ } catch (NoSuchFieldException | IllegalArgumentException | IllegalAccessException e ) {
336
+ throw new InternalError ("Could not access event handler" );
334
337
}
335
- throw new InternalError ("Could not access event handler" );
336
338
}
337
339
338
340
static synchronized void setHandler (Class <? extends jdk .internal .event .Event > eventClass , EventHandler handler ) {
339
341
Utils .ensureValidEventSubclass (eventClass );
340
- if (!JVM .getJVM ().setHandler (eventClass , handler )) {
341
- throw new InternalError ("Could not set event handler" );
342
+ try {
343
+ Field field = eventClass .getDeclaredField (EventInstrumentation .FIELD_EVENT_HANDLER );
344
+ SecuritySupport .setAccessible (field );
345
+ field .set (null , handler );
346
+ } catch (NoSuchFieldException | IllegalArgumentException | IllegalAccessException e ) {
347
+ throw new InternalError ("Could not access event handler" );
342
348
}
343
349
}
344
350
You can’t perform that action at this time.
0 commit comments