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

Update example for Extension Event in jvmti specs

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • 16
    • hotspot
    • None
    • behavioral
    • minimal
    • This changes an incorrect example only and so has no affect on users of JVM TI.
    • Other
    • SE

      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">

            vkempik Vladimir Kempik
            vkempik Vladimir Kempik
            Daniel Daugherty, David Holmes
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: