From: <ls...@us...> - 2012-09-23 17:54:06
|
Revision: 5932 http://jnode.svn.sourceforge.net/jnode/?rev=5932&view=rev Author: lsantha Date: 2012-09-23 17:53:55 +0000 (Sun, 23 Sep 2012) Log Message: ----------- Integrating OpenJDK 6 build 26. Classlib updated. Modified Paths: -------------- trunk/all/lib/ftp.properties trunk/core/src/openjdk/vm/java/io/JNodeFileSystem.java trunk/core/src/openjdk/vm/java/io/NativeUnixFileSystem.java Modified: trunk/all/lib/ftp.properties =================================================================== --- trunk/all/lib/ftp.properties 2012-09-23 09:24:10 UTC (rev 5931) +++ trunk/all/lib/ftp.properties 2012-09-23 17:53:55 UTC (rev 5932) @@ -1,3 +1,3 @@ -classlib.url=http://jnode.ro//classlib/20091228090913 -classlib.md5=ac4c3f52a31d0a1f58e4515c0be7480b -classlib-src.md5=0ba30a72207217ba95cb6c5f0031ad86 \ No newline at end of file +classlib.url=http://jnode.ro//classlib/20120923084426 +classlib.md5=428d062b09531822195a2ae3d486e791 +classlib-src.md5=c9d1cc877354726fafdc463342de7453 \ No newline at end of file Modified: trunk/core/src/openjdk/vm/java/io/JNodeFileSystem.java =================================================================== --- trunk/core/src/openjdk/vm/java/io/JNodeFileSystem.java 2012-09-23 09:24:10 UTC (rev 5931) +++ trunk/core/src/openjdk/vm/java/io/JNodeFileSystem.java 2012-09-23 17:53:55 UTC (rev 5932) @@ -75,8 +75,12 @@ return VMFile.mkdir(f.getPath()); } + /** + * The resulting temporary file may have more restrictive access permission + * on some platforms, if restrictive is true. + */ @Override - public boolean createFileExclusively(String pathname) throws IOException { + public boolean createFileExclusively(String pathname, boolean restrictive) throws IOException { return VMFile.create(pathname); } Modified: trunk/core/src/openjdk/vm/java/io/NativeUnixFileSystem.java =================================================================== --- trunk/core/src/openjdk/vm/java/io/NativeUnixFileSystem.java 2012-09-23 09:24:10 UTC (rev 5931) +++ trunk/core/src/openjdk/vm/java/io/NativeUnixFileSystem.java 2012-09-23 17:53:55 UTC (rev 5932) @@ -80,7 +80,7 @@ return success; } - private static boolean createFileExclusively(UnixFileSystem ufs, String path) { + private static boolean createFileExclusively(UnixFileSystem ufs, String path, boolean restrictive) { try { return VMFile.create(path); } catch(IOException ioe){ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |