comparison src/share/vm/prims/jvmtiHpp.xsl @ 1121:98cd9901c161

6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14 Summary: If a JVMTI agent asks for version 1.0, then it should get version 1.0 semantics. Reviewed-by: dholmes, ohair
author dcubed
date Mon, 14 Dec 2009 10:05:36 -0700
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
1120:9127aa69352e 1121:98cd9901c161
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <!-- 2 <!--
3 Copyright 2002-2005 Sun Microsystems, Inc. All Rights Reserved. 3 Copyright 2002-2009 Sun Microsystems, Inc. All Rights Reserved.
4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 5
6 This code is free software; you can redistribute it and/or modify it 6 This code is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License version 2 only, as 7 under the terms of the GNU General Public License version 2 only, as
8 published by the Free Software Foundation. 8 published by the Free Software Foundation.
46 46
47 class JvmtiEnv : public JvmtiEnvBase { 47 class JvmtiEnv : public JvmtiEnvBase {
48 48
49 private: 49 private:
50 50
51 JvmtiEnv(); 51 JvmtiEnv(jint version);
52 ~JvmtiEnv(); 52 ~JvmtiEnv();
53 53
54 public: 54 public:
55 55
56 static JvmtiEnv* create_a_jvmti(); 56 static JvmtiEnv* create_a_jvmti(jint version);
57 57
58 </xsl:text> 58 </xsl:text>
59 <xsl:apply-templates select="functionsection"/> 59 <xsl:apply-templates select="functionsection"/>
60 <xsl:text> 60 <xsl:text>
61 }; 61 };