--- old/src/java.base/unix/classes/sun/nio/ch/InheritedChannel.java 2014-08-25 21:21:30.006088803 +0100 +++ new/src/java.base/unix/classes/sun/nio/ch/InheritedChannel.java 2014-08-25 21:21:29.714088806 +0100 @@ -226,6 +226,7 @@ // -- Native methods -- + private static native void initIDs(); private static native int dup(int fd) throws IOException; private static native void dup2(int fd, int fd2) throws IOException; private static native int open0(String path, int oflag) throws IOException; @@ -236,5 +237,6 @@ static { IOUtil.load(); + initIDs(); } }