src/java.base/share/classes/java/lang/System.java
changeset 47707 67aa34b019e1
parent 47476 1851856462b0
child 48053 6dcbdc9f99fc
equal deleted inserted replaced
47706:5d668ad5142f 47707:67aa34b019e1
  1797      * for example, L, and a native library called L is statically linked
  1797      * for example, L, and a native library called L is statically linked
  1798      * with the VM, then the JNI_OnLoad_L function exported by the library
  1798      * with the VM, then the JNI_OnLoad_L function exported by the library
  1799      * is invoked rather than attempting to load a dynamic library.
  1799      * is invoked rather than attempting to load a dynamic library.
  1800      * A filename matching the argument does not have to exist in the
  1800      * A filename matching the argument does not have to exist in the
  1801      * file system.
  1801      * file system.
  1802      * See the JNI Specification for more details.
  1802      * See the <a href="{@docRoot}/../specs/jni/index.html"> JNI Specification</a>
       
  1803      * for more details.
  1803      *
  1804      *
  1804      * Otherwise, the filename argument is mapped to a native library image in
  1805      * Otherwise, the filename argument is mapped to a native library image in
  1805      * an implementation-dependent manner.
  1806      * an implementation-dependent manner.
  1806      *
  1807      *
  1807      * <p>
  1808      * <p>
  1833      * Loads the native library specified by the <code>libname</code>
  1834      * Loads the native library specified by the <code>libname</code>
  1834      * argument.  The <code>libname</code> argument must not contain any platform
  1835      * argument.  The <code>libname</code> argument must not contain any platform
  1835      * specific prefix, file extension or path. If a native library
  1836      * specific prefix, file extension or path. If a native library
  1836      * called <code>libname</code> is statically linked with the VM, then the
  1837      * called <code>libname</code> is statically linked with the VM, then the
  1837      * JNI_OnLoad_<code>libname</code> function exported by the library is invoked.
  1838      * JNI_OnLoad_<code>libname</code> function exported by the library is invoked.
  1838      * See the JNI Specification for more details.
  1839      * See the <a href="{@docRoot}/../specs/jni/index.html"> JNI Specification</a>
       
  1840      * for more details.
  1839      *
  1841      *
  1840      * Otherwise, the libname argument is loaded from a system library
  1842      * Otherwise, the libname argument is loaded from a system library
  1841      * location and mapped to a native library image in an implementation-
  1843      * location and mapped to a native library image in an implementation-
  1842      * dependent manner.
  1844      * dependent manner.
  1843      * <p>
  1845      * <p>