mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8275063: Implementation of Foreign Function & Memory API (Second incubator)
Reviewed-by: erikj, psandoz, jvernee, darcy
This commit is contained in:
parent
17e68caad7
commit
96e36071b6
191 changed files with 9463 additions and 7631 deletions
|
@ -68,6 +68,7 @@ import jdk.internal.org.objectweb.asm.ModuleVisitor;
|
|||
import jdk.internal.org.objectweb.asm.Opcodes;
|
||||
import jdk.internal.reflect.CallerSensitive;
|
||||
import jdk.internal.reflect.Reflection;
|
||||
import jdk.internal.vm.annotation.Stable;
|
||||
import sun.security.util.SecurityConstants;
|
||||
|
||||
/**
|
||||
|
@ -110,7 +111,8 @@ public final class Module implements AnnotatedElement {
|
|||
private final ModuleDescriptor descriptor;
|
||||
|
||||
// true, if this module allows restricted native access
|
||||
private volatile boolean enableNativeAccess;
|
||||
@Stable
|
||||
private boolean enableNativeAccess;
|
||||
|
||||
/**
|
||||
* Creates a new named Module. The resulting Module will be defined to the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue