mirror of
https://github.com/corda/corda.git
synced 2025-03-10 22:44:20 +00:00
implement JVM_CompileClass and JVM_CompileClasses stubs
These don't currently do anything but return false.
This commit is contained in:
parent
20baef4e69
commit
7b4b43e119
@ -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(); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user