William Quan <[EMAIL PROTECTED]> writes: > Q1.) Why is the JVM eclipsing my getmsg() and putmsg() syscalls with > this from libc?
This not Java specific, you'll get the same problem when dlopening a library which is linked against libLiS.so. The first getmsg which gets found is from libc. If you set LD_DEBUG=symbols,bindings you can see what's happening. (E.g. "LD_DEBUG=symbols,bindings java ... 2>&1 | grep getmsg") In order to get getmsg() from libLiS.so you either have to set LD_PRELOAD=libLiS.so or create a new startup program (which you'll use instead of "java") that is linked with libLiS.so. > Q2.) Does the following restriction apply to the linux 1.3.1 (native > threads)? No, the restriction only applies to the green threads VM. Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html Run Java 2 SE v1.3.1 on your iPAQ: http://www.handhelds.org/pipermail/ipaq/2001-June/007221.html ---------------------------------------------------------------------- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]