-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
b32
-
generic
-
solaris_8
GrowableArray's do not work with jlong, and must use uint64_t to get the same capabilities.
jvmtiTagMap.cpp:857
GrowableArray<jlong>* _tag_results; // collected tags
Must be changed to
GrowableArray<uint64_t>* _tag_results;
Along with any other references to jlong.
jvmtiTagMap.cpp:857
GrowableArray<jlong>* _tag_results; // collected tags
Must be changed to
GrowableArray<uint64_t>* _tag_results;
Along with any other references to jlong.