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 8d0f152 commit baaedc9Copy full SHA for baaedc9
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/EmulatedPosixSupport.java
@@ -1925,10 +1925,15 @@ public static final class MMapHandle {
1925
private final long offset;
1926
1927
public MMapHandle(SeekableByteChannel channel, long offset) {
1928
- this.channel = channel;
+ setChannel(channel);
1929
this.offset = offset;
1930
}
1931
1932
+ @TruffleBoundary
1933
+ private void setChannel(SeekableByteChannel channel) {
1934
+ // this.channel = channel;
1935
+ }
1936
+
1937
@Override
1938
public String toString() {
1939
CompilerAsserts.neverPartOfCompilation();
0 commit comments