< prev index next >

src/java.base/aix/classes/sun/nio/fs/AixNativeDispatcher.java

Print this page




  26 
  27 package sun.nio.fs;
  28 
  29 /**
  30  * AIX specific system calls.
  31  */
  32 
  33 class AixNativeDispatcher extends UnixNativeDispatcher {
  34     private AixNativeDispatcher() { }
  35 
  36     /**
  37      * Special implementation of 'getextmntent' (see SolarisNativeDispatcher)
  38      * that returns all entries at once.
  39      */
  40     static native UnixMountEntry[] getmntctl() throws UnixException;
  41 
  42     // initialize
  43     private static native void init();
  44 
  45     static {
  46         jdk.internal.loader.BootLoader.loadLibrary("nio");
  47         init();
  48     }
  49 }


  26 
  27 package sun.nio.fs;
  28 
  29 /**
  30  * AIX specific system calls.
  31  */
  32 
  33 class AixNativeDispatcher extends UnixNativeDispatcher {
  34     private AixNativeDispatcher() { }
  35 
  36     /**
  37      * Special implementation of 'getextmntent' (see SolarisNativeDispatcher)
  38      * that returns all entries at once.
  39      */
  40     static native UnixMountEntry[] getmntctl() throws UnixException;
  41 
  42     // initialize
  43     private static native void init();
  44 
  45     static {
  46         sun.security.action.LoadLibraryAction.privilegedLoadLibrary("nio");
  47         init();
  48     }
  49 }
< prev index next >