< prev index next >

src/java.base/unix/classes/java/io/UnixFileSystem.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 297,306 **** --- 297,312 ---- /* -- Disk usage -- */ public native long getSpace(File f, int t); /* -- Basic infrastructure -- */ + private native long getNameMax0(String path); + + public long getNameMax(String path) { + return getNameMax0(path); + } + public int compare(File f1, File f2) { return f1.getPath().compareTo(f2.getPath()); } public int hashCode(File f) {
< prev index next >