mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 02:24:40 +02:00
8287496: Alternative virtual thread implementation that maps to OS thread
Reviewed-by: rehn, mchung
This commit is contained in:
parent
199832a710
commit
6ff2d89ea1
72 changed files with 694 additions and 173 deletions
|
@ -3487,10 +3487,13 @@ JVM_LEAF(jboolean, JVM_IsSupportedJNIVersion(jint version))
|
|||
JVM_END
|
||||
|
||||
|
||||
JVM_LEAF(jboolean, JVM_IsPreviewEnabled(JNIEnv *env))
|
||||
JVM_LEAF(jboolean, JVM_IsPreviewEnabled(void))
|
||||
return Arguments::enable_preview() ? JNI_TRUE : JNI_FALSE;
|
||||
JVM_END
|
||||
|
||||
JVM_LEAF(jboolean, JVM_IsContinuationsSupported(void))
|
||||
return VMContinuations ? JNI_TRUE : JNI_FALSE;
|
||||
JVM_END
|
||||
|
||||
// String support ///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue