Commit 7e3b6e31 by Tom Tromey Committed by Tom Tromey

natRuntime.cc (_load): Call add_library.

	* java/lang/natRuntime.cc (_load): Call add_library.
	(loadLibraryInternal): Likewise.

From-SVN: r31877
parent c56c8c43
2000-02-09 Tom Tromey <tromey@cygnus.com>
* java/lang/natRuntime.cc (_load): Call add_library.
(loadLibraryInternal): Likewise.
* gnu/gcj/convert/natIconv.cc (Input_iconv::finalize): Call
iconv_close when handle is not NULL. Thanks to Andrew Haley.
(Output_iconv::finalize): Likewise.
......
......@@ -119,6 +119,8 @@ java::lang::Runtime::_load (jstring path, jboolean do_search)
_Jv_Throw (new UnsatisfiedLinkError (JvNewStringLatin1 (msg)));
}
add_library (h);
void *onload = lt_dlsym (h, "JNI_OnLoad");
if (onload != NULL)
{
......@@ -150,6 +152,8 @@ java::lang::Runtime::loadLibraryInternal (jstring lib)
buf[total] = '\0';
// FIXME: make sure path is absolute.
lt_dlhandle h = lt_dlopenext (buf);
if (h != NULL)
add_library (h);
return h != NULL;
#else
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment