99 <xsl:text>
100 /* Include file for the Java(tm) Virtual Machine Tool Interface */
101
102 #ifndef _JAVA_JVMTI_H_
103 #define _JAVA_JVMTI_H_
104
105 #include "jni.h"
106
107 #ifdef __cplusplus
108 extern "C" {
109 #endif
110
111 enum {
112 JVMTI_VERSION_1 = 0x30010000,
113 JVMTI_VERSION_1_0 = 0x30010000,
114 JVMTI_VERSION_1_1 = 0x30010100,
115 JVMTI_VERSION_1_2 = 0x30010200,
116 JVMTI_VERSION_9 = 0x30090000,
117 JVMTI_VERSION_11 = 0x300B0000,
118 JVMTI_VERSION_19 = 0x30130000,
119
120 JVMTI_VERSION = 0x30000000 + (</xsl:text>
121 <xsl:value-of select="$majorversion"/>
122 <xsl:text> * 0x10000) + (</xsl:text>
123 <!-- Now minorversion is always 0 -->
124 <xsl:text> 0 * 0x100)</xsl:text>
125 <xsl:variable name="micro">
126 <xsl:call-template name="microversion"/>
127 </xsl:variable>
128 <xsl:choose>
129 <xsl:when test="string($micro)='dev'">
130 <xsl:text> /* checked out - </xsl:text>
131 </xsl:when>
132 <xsl:otherwise>
133 <xsl:text> + </xsl:text>
134 <xsl:value-of select="$micro"/>
135 <xsl:text> /* </xsl:text>
136 </xsl:otherwise>
137 </xsl:choose>
138 <xsl:text>version: </xsl:text>
|
99 <xsl:text>
100 /* Include file for the Java(tm) Virtual Machine Tool Interface */
101
102 #ifndef _JAVA_JVMTI_H_
103 #define _JAVA_JVMTI_H_
104
105 #include "jni.h"
106
107 #ifdef __cplusplus
108 extern "C" {
109 #endif
110
111 enum {
112 JVMTI_VERSION_1 = 0x30010000,
113 JVMTI_VERSION_1_0 = 0x30010000,
114 JVMTI_VERSION_1_1 = 0x30010100,
115 JVMTI_VERSION_1_2 = 0x30010200,
116 JVMTI_VERSION_9 = 0x30090000,
117 JVMTI_VERSION_11 = 0x300B0000,
118 JVMTI_VERSION_19 = 0x30130000,
119 JVMTI_VERSION_21 = 0x30150000,
120
121 JVMTI_VERSION = 0x30000000 + (</xsl:text>
122 <xsl:value-of select="$majorversion"/>
123 <xsl:text> * 0x10000) + (</xsl:text>
124 <!-- Now minorversion is always 0 -->
125 <xsl:text> 0 * 0x100)</xsl:text>
126 <xsl:variable name="micro">
127 <xsl:call-template name="microversion"/>
128 </xsl:variable>
129 <xsl:choose>
130 <xsl:when test="string($micro)='dev'">
131 <xsl:text> /* checked out - </xsl:text>
132 </xsl:when>
133 <xsl:otherwise>
134 <xsl:text> + </xsl:text>
135 <xsl:value-of select="$micro"/>
136 <xsl:text> /* </xsl:text>
137 </xsl:otherwise>
138 </xsl:choose>
139 <xsl:text>version: </xsl:text>
|