src/share/vm/prims/jvm.h

changeset 4037
da91efe96a93
parent 3846
8b0a4867acf0
child 4393
35431a769282
     1.1 --- a/src/share/vm/prims/jvm.h	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/share/vm/prims/jvm.h	Sat Sep 01 13:25:18 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -550,46 +550,46 @@
    1.11  JVM_GetClassConstantPool(JNIEnv *env, jclass cls);
    1.12  
    1.13  JNIEXPORT jint JNICALL JVM_ConstantPoolGetSize
    1.14 -(JNIEnv *env, jobject unused, jobject jcpool);
    1.15 +(JNIEnv *env, jobject obj, jobject unused);
    1.16  
    1.17  JNIEXPORT jclass JNICALL JVM_ConstantPoolGetClassAt
    1.18 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.19 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.20  
    1.21  JNIEXPORT jclass JNICALL JVM_ConstantPoolGetClassAtIfLoaded
    1.22 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.23 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.24  
    1.25  JNIEXPORT jobject JNICALL JVM_ConstantPoolGetMethodAt
    1.26 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.27 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.28  
    1.29  JNIEXPORT jobject JNICALL JVM_ConstantPoolGetMethodAtIfLoaded
    1.30 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.31 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.32  
    1.33  JNIEXPORT jobject JNICALL JVM_ConstantPoolGetFieldAt
    1.34 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.35 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.36  
    1.37  JNIEXPORT jobject JNICALL JVM_ConstantPoolGetFieldAtIfLoaded
    1.38 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.39 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.40  
    1.41  JNIEXPORT jobjectArray JNICALL JVM_ConstantPoolGetMemberRefInfoAt
    1.42 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.43 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.44  
    1.45  JNIEXPORT jint JNICALL JVM_ConstantPoolGetIntAt
    1.46 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.47 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.48  
    1.49  JNIEXPORT jlong JNICALL JVM_ConstantPoolGetLongAt
    1.50 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.51 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.52  
    1.53  JNIEXPORT jfloat JNICALL JVM_ConstantPoolGetFloatAt
    1.54 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.55 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.56  
    1.57  JNIEXPORT jdouble JNICALL JVM_ConstantPoolGetDoubleAt
    1.58 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.59 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.60  
    1.61  JNIEXPORT jstring JNICALL JVM_ConstantPoolGetStringAt
    1.62 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.63 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.64  
    1.65  JNIEXPORT jstring JNICALL JVM_ConstantPoolGetUTF8At
    1.66 -(JNIEnv *env, jobject unused, jobject jcpool, jint index);
    1.67 +(JNIEnv *env, jobject obj, jobject unused, jint index);
    1.68  
    1.69  /*
    1.70   * java.security.*

mercurial