jdk/src/share/classes/java/nio/MappedByteBuffer.java
author alanb
Thu, 29 Jul 2010 13:08:58 +0100
changeset 6128 f95e5fdc1a65
parent 5506 202f599c92aa
child 7025 6e002f9a2899
permissions -rw-r--r--
6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated 6799037: (fs) MappedByteBuffer.load crash with unaligned file-mapping (sol) Reviewed-by: chegar, forax
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.nio;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
6128
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
    28
import sun.misc.Unsafe;
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
    29
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * A direct byte buffer whose content is a memory-mapped region of a file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <p> Mapped byte buffers are created via the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * java.nio.channels.FileChannel#map FileChannel.map} method.  This class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * extends the {@link ByteBuffer} class with operations that are specific to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * memory-mapped file regions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <p> A mapped byte buffer and the file mapping that it represents remain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * valid until the buffer itself is garbage-collected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p> The content of a mapped byte buffer can change at any time, for example
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * if the content of the corresponding region of the mapped file is changed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * this program or another.  Whether or not such changes occur, and when they
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * occur, is operating-system dependent and therefore unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <a name="inaccess"><p> All or part of a mapped byte buffer may become
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * inaccessible at any time, for example if the mapped file is truncated.  An
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * attempt to access an inaccessible region of a mapped byte buffer will not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * change the buffer's content and will cause an unspecified exception to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * thrown either at the time of the access or at some later time.  It is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * therefore strongly recommended that appropriate precautions be taken to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * avoid the manipulation of a mapped file by this program, or by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * concurrently running program, except to read or write the file's content.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <p> Mapped byte buffers otherwise behave no differently than ordinary direct
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * byte buffers. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * @author Mark Reinhold
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * @author JSR-51 Expert Group
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
public abstract class MappedByteBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    extends ByteBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    // This is a little bit backwards: By rights MappedByteBuffer should be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    // subclass of DirectByteBuffer, but to keep the spec clear and simple, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    // for optimization purposes, it's easier to do it the other way around.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    // This works because DirectByteBuffer is a package-private class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    // Volatile to make sure that the finalization thread sees the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    // value of this so that a region is not accidentally unmapped again later.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    volatile boolean isAMappedBuffer;                   // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    // This should only be invoked by the DirectByteBuffer constructors
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    MappedByteBuffer(int mark, int pos, int lim, int cap, // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                     boolean mapped)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        super(mark, pos, lim, cap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        isAMappedBuffer = mapped;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    MappedByteBuffer(int mark, int pos, int lim, int cap) { // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        super(mark, pos, lim, cap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        isAMappedBuffer = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private void checkMapped() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        if (!isAMappedBuffer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            // Can only happen if a luser explicitly casts a direct byte buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
6128
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
    98
    // Returns the distance (in bytes) of the buffer from the page aligned address
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
    99
    // of the mapping. Computed each time to avoid storing in every direct buffer.
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   100
    private long mappingOffset() {
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   101
        int ps = Bits.pageSize();
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   102
        long offset = address % ps;
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   103
        return (offset >= 0) ? offset : (ps + offset);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   104
    }
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   105
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   106
    private long mappingAddress(long mappingOffset) {
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   107
        return address - mappingOffset;
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   108
    }
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   109
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   110
    private long mappingLength(long mappingOffset) {
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   111
        return (long)capacity() + mappingOffset;
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   112
    }
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   113
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Tells whether or not this buffer's content is resident in physical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * memory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * <p> A return value of <tt>true</tt> implies that it is highly likely
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * that all of the data in this buffer is resident in physical memory and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * may therefore be accessed without incurring any virtual-memory page
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * faults or I/O operations.  A return value of <tt>false</tt> does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * necessarily imply that the buffer's content is not resident in physical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * memory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * <p> The returned value is a hint, rather than a guarantee, because the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * underlying operating system may have paged out some of the buffer's data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * by the time that an invocation of this method returns.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @return  <tt>true</tt> if it is likely that this buffer's content
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *          is resident in physical memory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    public final boolean isLoaded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        checkMapped();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        if ((address == 0) || (capacity() == 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            return true;
6128
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   136
        long offset = mappingOffset();
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   137
        long length = mappingLength(offset);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   138
        return isLoaded0(mappingAddress(offset), length, Bits.pageCount(length));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * Loads this buffer's content into physical memory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * <p> This method makes a best effort to ensure that, when it returns,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * this buffer's content is resident in physical memory.  Invoking this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * method may cause some number of page faults and I/O operations to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * occur. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    public final MappedByteBuffer load() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        checkMapped();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        if ((address == 0) || (capacity() == 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            return this;
6128
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   155
        long offset = mappingOffset();
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   156
        long length = mappingLength(offset);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   157
        load0(mappingAddress(offset), length);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   158
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   159
        // touch each page
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   160
        Unsafe unsafe = Unsafe.getUnsafe();
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   161
        int ps = Bits.pageSize();
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   162
        int count = Bits.pageCount(length);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   163
        long a = mappingAddress(offset);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   164
        for (int i=0; i<count; i++) {
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   165
            unsafe.getByte(a);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   166
            a += ps;
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   167
        }
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   168
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Forces any changes made to this buffer's content to be written to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * storage device containing the mapped file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * <p> If the file mapped into this buffer resides on a local storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * device then when this method returns it is guaranteed that all changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * made to the buffer since it was created, or since this method was last
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * invoked, will have been written to that device.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * <p> If the file does not reside on a local device then no such guarantee
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * is made.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * <p> If this buffer was not mapped in read/write mode ({@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * java.nio.channels.FileChannel.MapMode#READ_WRITE}) then invoking this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * method has no effect. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @return  This buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    public final MappedByteBuffer force() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        checkMapped();
6128
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   192
        if ((address != 0) && (capacity() != 0)) {
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   193
            long offset = mappingOffset();
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   194
            force0(mappingAddress(offset), mappingLength(offset));
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   195
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
6128
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   199
    private native boolean isLoaded0(long address, long length, int pageCount);
f95e5fdc1a65 6934977: (bf) MappedByteBuffer.load can SIGBUS if file is truncated
alanb
parents: 5506
diff changeset
   200
    private native void load0(long address, long length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    private native void force0(long address, long length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
}