Summary
The JVMTI specification describes the "Extension Event" and gives an example, but the example doesn't match the specification. The example must be changed to match the specification.
Problem
In the JVMTI specification, in the description of "Extension Event", the specification for the extension event callback function is given as:
typedef void (JNICALL *jvmtiExtensionEvent)
(jvmtiEnv* jvmti_env,
...);
But the example for a handler that takes a jint
parameter is given as:
void JNICALL myHandler(jvmtiEnv* jvmti_env, jint myInt, ...)
Here a variadic function argument (myInt
) is declared as a constant argument.
On some platforms constant and variadic arguments are passed differently, and following the example will result in error on such platforms.
Solution
Change the example function to match the specification of jvmtiExtensionEvent
and only take a varargs parameter.
Specification
src/hotspot/share/prims/jvmti.xml
there is a <code>jint</code> parameter, the event handler should be
declared:
<example>
- void JNICALL myHandler(jvmtiEnv* jvmti_env, jint myInt, ...)
+ void JNICALL myHandler(jvmtiEnv* jvmti_env, ...)
</example>
Note the terminal "<code>...</code>" which indicates varargs.
+ The <code>jint</code> argument inside <code>myHandler</code> needs to be extracted using
+ the <code>va_*</code> syntax of the C programming language.
</description>
<parameters>
<param id="jvmti_env">
- csr of
-
JDK-8253899 Make IsClassUnloadingEnabled signature match specification
-
- Resolved
-