You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix J9 JVM segfault in dropped trace method resolution
The dropped trace was incorrectly setting bci=0 and casting a string literal
to jmethodID, causing JVMTI calls like GetMethodDeclaringClass() to segfault
when processing the JFR constant pool during shutdown.
Fixed by setting bci=BCI_ERROR to properly route the dropped trace to native
method resolution (fillNativeMethodInfo) instead of Java method resolution
(fillJavaMethodInfo), avoiding JVMTI calls on invalid method IDs.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
0 commit comments