src/java.base/unix/classes/sun/nio/fs/UnixConstants.java.template
changeset 50275 69204b98dc3d
parent 47428 d72d7d55c765
equal deleted inserted replaced
50274:33a890c972c3 50275:69204b98dc3d
     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  *
       
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     4  *
     6  * 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
     7  * 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
     8  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    20  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    21  *
    20  *
    22  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    23  * or visit www.oracle.com if you need additional information or have any
    22  * or visit www.oracle.com if you need additional information or have any
    24  * questions.
    23  * questions.
    25  *
       
    26  */
    24  */
    27 
    25 
    28 @@END_COPYRIGHT@@
    26 @@END_COPYRIGHT@@
    29 
    27 
    30 #include <stdio.h>
    28 #include <stdio.h>
   109     static final int PREFIX_EXDEV = EXDEV;
   107     static final int PREFIX_EXDEV = EXDEV;
   110     static final int PREFIX_EISDIR = EISDIR;
   108     static final int PREFIX_EISDIR = EISDIR;
   111     static final int PREFIX_ENOTEMPTY = ENOTEMPTY;
   109     static final int PREFIX_ENOTEMPTY = ENOTEMPTY;
   112     static final int PREFIX_ENOSPC = ENOSPC;
   110     static final int PREFIX_ENOSPC = ENOSPC;
   113     static final int PREFIX_EAGAIN = EAGAIN;
   111     static final int PREFIX_EAGAIN = EAGAIN;
       
   112     static final int PREFIX_EWOULDBLOCK = EWOULDBLOCK;
   114     static final int PREFIX_ENOSYS = ENOSYS;
   113     static final int PREFIX_ENOSYS = ENOSYS;
   115     static final int PREFIX_ELOOP = ELOOP;
   114     static final int PREFIX_ELOOP = ELOOP;
   116     static final int PREFIX_EROFS = EROFS;
   115     static final int PREFIX_EROFS = EROFS;
   117 
   116 
   118 #ifndef ENODATA
   117 #ifndef ENODATA