(Not sure if this got through - reposting)
Specifically, when compiling a program which uses threads comes with:
robot.java -
"Could not instantiate /java/lang/Thread"
//robot.java, an intended java 1.1 program
import java.awt.*;
import java.awt.applet.*;
// The Thread class hasn't changed from 1.0 to 1.1 has it? ;)
public class robot extends Applet implements Runnable {
Thread animator;
public void start() { (if animator == null) animator.start(); }
public void stop() { if animaotr != null) animator.stop(); }
public void run() { //some code }
}
output of ldconfig and ldd -v appears fine (libawt and libjava are
picked up correctly). So I'm at a loss to
understand the nature of the problem. No other problems with the JDK.
HotJava1.1.4 and Netscape 4.05 (non-java 1.1) work fine, so I suspect
it's JDK related.
kernel 2.0.34, libc5.4.44, ld.so.1.7.14, jdk1.1.3
Cheers,
Mark