6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14

If a JVMTI agent asks for version 1.0, then it should get version 1.0 semantics.

Reviewed-by: dholmes, ohair
This commit is contained in:
Daniel D. Daugherty 2009-12-14 10:05:36 -07:00
parent 8dd1b6ace1
commit ce78944539
6 changed files with 81 additions and 14 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved.
* Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -76,6 +76,7 @@ class JvmtiEnvBase : public CHeapObj {
jvmtiEnv _jvmti_external;
jint _magic;
jint _version; // version value passed to JNI GetEnv()
JvmtiEnvBase* _next;
bool _is_retransformable;
const void *_env_local_storage; // per env agent allocated data.
@ -91,7 +92,7 @@ class JvmtiEnvBase : public CHeapObj {
int _native_method_prefix_count;
protected:
JvmtiEnvBase();
JvmtiEnvBase(jint version);
~JvmtiEnvBase();
void dispose();
void env_dispose();
@ -122,6 +123,9 @@ class JvmtiEnvBase : public CHeapObj {
bool is_valid() { return _magic == JVMTI_MAGIC; }
bool use_version_1_0_semantics(); // agent asked for version 1.0
bool use_version_1_1_semantics(); // agent asked for version 1.1
bool is_retransformable() { return _is_retransformable; }
static ByteSize jvmti_external_offset() {