Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/classlib/openjdk/classlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extern Object *classlibMarkThreadTerminated(Object *jThread);

#define classlibThreadIdName() SYMBOL(tid)
#define classlibAddThreadName() SYMBOL(add)
#define classlibThreadNameType() SYMBOL(array_C)
#define classlibThreadNameType() SYMBOL(sig_java_lang_String)
#define classlibRemoveThreadName() SYMBOL(removeThreadName)
#define classlibExceptionHandlerName() SYMBOL(uncaughtExceptionHandler)

Expand Down
11 changes: 10 additions & 1 deletion src/classlib/openjdk/jvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ jint JVM_GetInterfaceVersion() {
return JVM_INTERFACE_VERSION;
}

void JVM_BeforeHalt() {

}

/* JVM_CurrentTimeMillis */

Expand Down Expand Up @@ -1933,6 +1936,10 @@ jint JVM_GetArrayLength(JNIEnv *env, jobject arr) {
}


jboolean JVM_IsUseContainerSupport() {
return FALSE;
}

/* JVM_GetArrayElement */

jobject JVM_GetArrayElement(JNIEnv *env, jobject arr, jint index) {
Expand Down Expand Up @@ -1970,7 +1977,9 @@ jobject JVM_GetArrayElement(JNIEnv *env, jobject arr, jint index) {
}
}


jarray JVM_GetResourceLookupCacheURLs(JNIEnv *env, jobject loader){
return NULL;
}
/* JVM_GetPrimitiveArrayElement */

jvalue JVM_GetPrimitiveArrayElement(JNIEnv *env, jobject arr, jint index,
Expand Down