< prev index next >

src/solaris/classes/sun/nio/fs/UnixNativeDispatcher.java

Print this page
rev 8219 : 8024900: PPC64: Enable new build on AIX (jdk part)
8024854: PPC64: Basic changes and files to build the class library on AIX
Reviewed-by: alanb, prr, sla, chegar, michaelm, mullan, art, erikj
Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, thomas.stuefe@sap.com

@@ -394,12 +394,14 @@
     private static native void utimes0(long pathAddress, long times0, long times1)
         throws UnixException;
 
     /**
      * futimes(int fildes,, const struct timeval times[2])
+     *
+     * added path of file "fd" for platform ports (only needed on AIX and HPUX)
      */
-    static native void futimes(int fd, long times0, long times1) throws UnixException;
+    static native void futimes(int fd, long times0, long times1, UnixPath path) throws UnixException;
 
     /**
      * DIR *opendir(const char* dirname)
      */
     static long opendir(UnixPath path) throws UnixException {
< prev index next >