mirror of
https://github.com/corda/corda.git
synced 2025-01-23 21:08:48 +00:00
add stub implementations of JVM_{Enable|Disable}Compiler
This commit is contained in:
parent
18a6393ecf
commit
2b229b4b6d
@ -3160,10 +3160,16 @@ extern "C" JNIEXPORT jobject JNICALL
|
|||||||
EXPORT(JVM_CompilerCommand)(Thread*, jclass, jobject) { abort(); }
|
EXPORT(JVM_CompilerCommand)(Thread*, jclass, jobject) { abort(); }
|
||||||
|
|
||||||
extern "C" JNIEXPORT void JNICALL
|
extern "C" JNIEXPORT void JNICALL
|
||||||
EXPORT(JVM_EnableCompiler)(Thread*, jclass) { abort(); }
|
EXPORT(JVM_EnableCompiler)(Thread*, jclass)
|
||||||
|
{
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
|
||||||
extern "C" JNIEXPORT void JNICALL
|
extern "C" JNIEXPORT void JNICALL
|
||||||
EXPORT(JVM_DisableCompiler)(Thread*, jclass) { abort(); }
|
EXPORT(JVM_DisableCompiler)(Thread*, jclass)
|
||||||
|
{
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
|
||||||
extern "C" JNIEXPORT void JNICALL
|
extern "C" JNIEXPORT void JNICALL
|
||||||
EXPORT(JVM_StartThread)(Thread* t, jobject thread)
|
EXPORT(JVM_StartThread)(Thread* t, jobject thread)
|
||||||
|
Loading…
Reference in New Issue
Block a user