implement JVM_CompileClass and JVM_CompileClasses stubs

These don't currently do anything but return false.
This commit is contained in:
Joel Dice 2011-03-25 18:50:31 -06:00
parent 20baef4e69
commit 7b4b43e119

View File

@ -2843,10 +2843,16 @@ extern "C" JNIEXPORT jboolean JNICALL
EXPORT(JVM_IsSilentCompiler)(Thread*, jclass) { abort(); }
extern "C" JNIEXPORT jboolean JNICALL
EXPORT(JVM_CompileClass)(Thread*, jclass, jclass) { abort(); }
EXPORT(JVM_CompileClass)(Thread*, jclass, jclass)
{
return false;
}
extern "C" JNIEXPORT jboolean JNICALL
EXPORT(JVM_CompileClasses)(Thread*, jclass, jstring) { abort(); }
EXPORT(JVM_CompileClasses)(Thread*, jclass, jstring)
{
return false;
}
extern "C" JNIEXPORT jobject JNICALL
EXPORT(JVM_CompilerCommand)(Thread*, jclass, jobject) { abort(); }