We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4469d2 commit ec41046Copy full SHA for ec41046
src/hotspot/share/prims/jvm.cpp
@@ -3869,7 +3869,11 @@ JVM_END
3869
3870
JVM_ENTRY(jboolean, JVM_IsDumpingClassList(JNIEnv *env))
3871
JVMWrapper("JVM_IsDumpingClassList");
3872
+#if INCLUDE_CDS
3873
return DumpLoadedClassList != NULL && classlist_file != NULL && classlist_file->is_open();
3874
+#else
3875
+ return false;
3876
+#endif // INCLUDE_CDS
3877
JVM_END
3878
3879
JVM_ENTRY(void, JVM_LogLambdaFormInvoker(JNIEnv *env, jstring line))
0 commit comments