Re: [kaffe] Problem with JNI...

2002-06-04 Thread Clemens Fuchslocher
On Tue, 4 Jun 2002, Martin Edlund wrote: > I have a slight problem with newer CVS versions of kaffe and JNI (both > 1.06 and 1.07-rc1). [...] > It keeps complaining that it cannot find the shared library I > have created. I have set CLASSPATH as well as LD_LIBRARY_PATH to point > to '.' in order

[kaffe] kaffe 1.0.6, Thread, run method & JNI

2002-05-13 Thread Clemens Fuchslocher
hi, Is there a way to use a native JNI method as the run method of a Thread object? The following example works with the Sun JDK but it won't work with kaffe. If I use kaffe in the example below, the start method of the Thread object will never return. Test.java: -=-= -=-= -=-= -=-= -=-= -=-=

[kaffe] kaffe 1.0.6, JNI & pthreads

2002-05-06 Thread Clemens Fuchslocher
hi, I have a problem with the java native interface and kaffe 1.0.6. The following jni tasks are working without any problems: calling a jni function from the java side and calling a java method from the jni side. But if I try to call a java method out of a pthread, which was created in a jni fu