hotspot/src/share/vm/prims/jvm.cpp
JVM_LEAF(void*, JVM_FindLibraryEntry(void* handle, const char* name))
{- -------------------------------------------
(1) (トレース出力) (See: JVMWrapper2)
---------------------------------------- -}
JVMWrapper2("JVM_FindLibraryEntry (%s)", name);
{- -------------------------------------------
(1) os::dll_lookup() を呼び出すだけ.
---------------------------------------- -}
return os::dll_lookup(handle, name);
JVM_END
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.