add stub implementations of JVM_{Enable|Disable}Compiler

This commit is contained in:
Joel Dice 2011-05-16 10:33:46 -06:00
parent 18a6393ecf
commit 2b229b4b6d

View File

@ -3160,10 +3160,16 @@ extern "C" JNIEXPORT jobject JNICALL
EXPORT(JVM_CompilerCommand)(Thread*, jclass, jobject) { abort(); }
extern "C" JNIEXPORT void JNICALL
EXPORT(JVM_EnableCompiler)(Thread*, jclass) { abort(); }
EXPORT(JVM_EnableCompiler)(Thread*, jclass)
{
// ignore
}
extern "C" JNIEXPORT void JNICALL
EXPORT(JVM_DisableCompiler)(Thread*, jclass) { abort(); }
EXPORT(JVM_DisableCompiler)(Thread*, jclass)
{
// ignore
}
extern "C" JNIEXPORT void JNICALL
EXPORT(JVM_StartThread)(Thread* t, jobject thread)