comparison src/share/vm/c1x/c1x_VMEntries.hpp @ 1419:7bf6a77b9c5a

implement recent safepoint & exceptionobject ci changes, HotSpotVMConfig
author Lukas Stadler <lukas.stadler@oracle.com>
date Mon, 12 Jul 2010 15:05:17 -0700
parents 712c7ff1afc1
children 6223633ce7dd
comparison
equal deleted inserted replaced
1418:55ac38887415 1419:7bf6a77b9c5a
204 * Signature: (Ljava/lang/Object;[BI)V 204 * Signature: (Ljava/lang/Object;[BI)V
205 */ 205 */
206 JNIEXPORT void JNICALL Java_com_sun_hotspot_c1x_VMEntries_installCode 206 JNIEXPORT void JNICALL Java_com_sun_hotspot_c1x_VMEntries_installCode
207 (JNIEnv *, jclass, jobject, jbyteArray, jint); 207 (JNIEnv *, jclass, jobject, jbyteArray, jint);
208 208
209 /*
210 * Class: com_sun_hotspot_c1x_VMEntries
211 * Method: getConfiguration
212 * Signature: ()Lcom/sun/hotspot/c1x/HotSpotVMConfig;
213 */
214 JNIEXPORT jobject JNICALL Java_com_sun_hotspot_c1x_VMEntries_getConfiguration
215 (JNIEnv *, jclass);
209 216
210 217
211 extern JNINativeMethod VMEntries_methods[]; 218 extern JNINativeMethod VMEntries_methods[];
212 int VMEntries_methods_count(); 219 int VMEntries_methods_count();
213 220