src/java.base/unix/classes/sun/nio/fs/UnixChannelFactory.java
changeset 52427 3c6aa484536c
parent 47460 b6d959fae9ef
equal deleted inserted replaced
52426:38bf0c9c4e64 52427:3c6aa484536c
     1 /*
     1 /*
     2  * Copyright (c) 2008, 2017, 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
    28 import java.nio.file.*;
    28 import java.nio.file.*;
    29 import java.nio.channels.*;
    29 import java.nio.channels.*;
    30 import java.io.FileDescriptor;
    30 import java.io.FileDescriptor;
    31 import java.util.Set;
    31 import java.util.Set;
    32 
    32 
    33 import jdk.internal.misc.SharedSecrets;
    33 import jdk.internal.access.SharedSecrets;
    34 import jdk.internal.misc.JavaIOFileDescriptorAccess;
    34 import jdk.internal.access.JavaIOFileDescriptorAccess;
    35 import sun.nio.ch.FileChannelImpl;
    35 import sun.nio.ch.FileChannelImpl;
    36 import sun.nio.ch.ThreadPool;
    36 import sun.nio.ch.ThreadPool;
    37 import sun.nio.ch.SimpleAsynchronousFileChannelImpl;
    37 import sun.nio.ch.SimpleAsynchronousFileChannelImpl;
    38 
    38 
    39 import static sun.nio.fs.UnixNativeDispatcher.*;
    39 import static sun.nio.fs.UnixNativeDispatcher.*;