URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.jni/] [pr29812_injar.c] - Rev 790
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdlib.h> #include <assert.h> #include <pr29812_injar.h> JNIEXPORT jint JNICALL JNI_OnLoad (JavaVM *vm, void *nothing) { JNIEnv *env; jint r; jclass k; r = (*vm)->GetEnv (vm, (void **) &env, JNI_VERSION_1_2); assert (r == JNI_OK); k = (*env)->FindClass (env, "pr29812_injar$inner"); assert (k != NULL); return JNI_VERSION_1_2; } void Java_pr29812_1injar_doit (JNIEnv *env, jclass b) { jclass k = (*env)->FindClass(env, "pr29812_injar$inner"); assert (k != NULL); }
Go to most recent revision | Compare with Previous | Blame | View Log