Makefile.in: Rebuilt.

* Makefile.in: Rebuilt.
	* Makefile.am (CLEANFILES): Don't mention $(class_files).
	(clean-local): New target
	* java/lang/natRuntime.cc: Include <ltdl.h> if required.
	(load, loadLibrary): Now native.
	(init): New method.
	* java/lang/Runtime.java (load, loadLibrary): Now native.
	(init): New native method.
	(Runtime): Use init.
	* prims.cc: Include <ltdl.h> if required.
	(JvRunMain): Call LTDL_SET_PRELOADED_SYMBOLS.

From-SVN: r26785
This commit is contained in:
Tom Tromey 1999-05-05 14:19:24 +00:00 committed by Tom Tromey
parent 8b04083bec
commit 9096b279c2
6 changed files with 94 additions and 16 deletions

View file

@ -94,18 +94,8 @@ public class Runtime
s.checkLink(lib);
}
public synchronized void load (String pathname)
{
checkLink (pathname);
// FIXME.
throw new UnsatisfiedLinkError ("Runtime.load not implemented");
}
public synchronized void loadLibrary (String libname)
{
checkLink (libname);
// FIXME.
throw new UnsatisfiedLinkError ("Runtime.loadLibrary not implemented");
}
public native void load (String pathname);
public native void loadLibrary (String libname);
public native void runFinalization ();
@ -122,10 +112,13 @@ public class Runtime
public native void traceInstructions (boolean on);
public native void traceMethodCalls (boolean on);
// A helper for the constructor.
private final native void init ();
// The sole constructor.
private Runtime ()
{
finalize_on_exit = false;
init ();
}
// Private data.