src/java.base/windows/classes/sun/nio/ch/WindowsAsynchronousFileChannelImpl.java
changeset 52427 3c6aa484536c
parent 48224 be0df5ab3093
child 57536 67cce1b84a9a
equal deleted inserted replaced
52426:38bf0c9c4e64 52427:3c6aa484536c
     1 /*
     1 /*
     2  * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    29 import java.util.concurrent.*;
    29 import java.util.concurrent.*;
    30 import java.nio.ByteBuffer;
    30 import java.nio.ByteBuffer;
    31 import java.nio.BufferOverflowException;
    31 import java.nio.BufferOverflowException;
    32 import java.io.IOException;
    32 import java.io.IOException;
    33 import java.io.FileDescriptor;
    33 import java.io.FileDescriptor;
    34 import jdk.internal.misc.SharedSecrets;
    34 import jdk.internal.access.SharedSecrets;
    35 import jdk.internal.misc.JavaIOFileDescriptorAccess;
    35 import jdk.internal.access.JavaIOFileDescriptorAccess;
    36 
    36 
    37 /**
    37 /**
    38  * Windows implementation of AsynchronousFileChannel using overlapped I/O.
    38  * Windows implementation of AsynchronousFileChannel using overlapped I/O.
    39  */
    39  */
    40 
    40