comparison src/share/vm/prims/jvm_misc.hpp @ 12813:675ffabf3798

8024087: Remove dead JVM_{Get,Set}PrimitiveFieldValues functions Summary: The two functions were used to support JDK 1.3 but are no longer in use Reviewed-by: coleenp, ctornqvi, twisti, dsamersoff
author mikael
date Wed, 02 Oct 2013 09:18:56 -0700
parents da91efe96a93
children de6a9e811145
comparison
equal deleted inserted replaced
12809:faff125a1ead 12813:675ffabf3798
32 // We do not allow real JNI or JVM entry point to call each other. 32 // We do not allow real JNI or JVM entry point to call each other.
33 33
34 jclass find_class_from_class_loader(JNIEnv* env, Symbol* name, jboolean init, Handle loader, Handle protection_domain, jboolean throwError, TRAPS); 34 jclass find_class_from_class_loader(JNIEnv* env, Symbol* name, jboolean init, Handle loader, Handle protection_domain, jboolean throwError, TRAPS);
35 35
36 void trace_class_resolution(Klass* to_class); 36 void trace_class_resolution(Klass* to_class);
37
38 /*
39 * Support for Serialization and RMI. Currently used by HotSpot only.
40 */
41
42 extern "C" {
43
44 void JNICALL
45 JVM_SetPrimitiveFieldValues(JNIEnv *env, jclass cb, jobject obj,
46 jlongArray fieldIDs, jcharArray typecodes, jbyteArray data);
47
48 void JNICALL
49 JVM_GetPrimitiveFieldValues(JNIEnv *env, jclass cb, jobject obj,
50 jlongArray fieldIDs, jcharArray typecodes, jbyteArray data);
51
52 }
53 37
54 /* 38 /*
55 * Support for -Xcheck:jni 39 * Support for -Xcheck:jni
56 */ 40 */
57 41