Blackdown Webpage Update

2000-01-24 Thread Riyad Kalla
Java-Linux Patriots, For those of you who haven't seen yet, blackdown has updated their website: 1) New JCK Status ( It seems ) 2) RC4 Is comming out this week 3) 1.2 Plugin will be available with next 1.2.2 ( RC4 ) Release 4) JDK 1.3 has been made available to blackdown and first pass port h

Re: AttachCurrentThread()

2000-01-24 Thread Jeff Galyan
Hi, Mark, First, you might want to check out Sheng Liang's excellent book on JNI, titled "The Java Native Interface". Also, Nathan Meyers' book, "Java Programming on Linux" is an excellent resource for Linux-specific Java programming questions, and (I think) includes a chapter or two covering JNI

libioser12.so

2000-01-24 Thread Weiqi Gao
Hi, A few days ago, a Linux version of libioser12.so (needed to run J2EE on Linux) was posted on this list. I saved it at the time but then deleted it by mistake. And I couldn't find the message in the mailing list archive (stringe!) so I don't have the exact email address of the poster. Could

Re: HELP: jdk122rc2 swing stuff doesn't work

2000-01-24 Thread Peter Jahn
Ok, now at last I finally remember what _my_ problem was. Before I installed the JDK, I had just reinstalled Linux (Suse 6.3) from scratch, doing the install in German. At least I assumed it was only the installation proper. Instead, that also gave users a LANG=de entry in their environment, and _

AttachCurrentThread()

2000-01-24 Thread Mark Delafranier
Java Linux Buffs: I have a mutli-threaded application using pthreads, RedHat 6.1, gcc 2.91.66, libc 2.1.2. This is a standard RedHat 6.1 install with no patches or upgrades. I have searched through the www.blackdown.org faqs on using JNI and I did not find anything helpfull for this problem. I

Re: BlackdownJDK1.2.2.RC3 crashes on SMP Kernels

2000-01-24 Thread Peter Graves
You need at least glibc 2.1.2 for Blackdown 1.2.2 RC3. See the status page: http://www.blackdown.org/java-linux/jdk1.2-status/jdk1.2-status.html It's very stable on my SMP machine (Debian, 2.3.39, glibc 2.1.2). -Peter http://armedbear.org Wolfgang Hoschek wrote: > > I am sure this has be

Re: blackdown jdk version..libpthread.so

2000-01-24 Thread Jason Blair
Hi Raj. I'm guessing that you have glibc-2.1.1 on your box, which is the version that is shipped with RedHat 6.0, and jdk1.2.2 RC3 needs glibc-2.1.2. JDK1.2pre-v2 needs glibc-2.1.1, which is why you didn't have any trouble with that. Hope this helps. jason Raj Patel wrote: > Hi everybody, >

SocketException on connect

2000-01-24 Thread Michael Maloney
I have a multi-threaded client. Each thread opens a socket connection to a remote server. The connection is made in the constructor to class Socket: Socket mysock = new Socket(host, port); ... where 'host' is a String. When several clients initialize (and connect their sockets) at the s

BlackdownJDK1.2.2.RC3 crashes on SMP Kernels

2000-01-24 Thread Wolfgang Hoschek
I am sure this has been raised before, but just in case... BlackdownJDK1.2.2.RC3 crashes on SMP Kernels, in our case 2.2.5-22smp, glibc-2.1.1-6, RH 6.0 (Both IBMJDK1.1.8 and SunInproseJDK1.2.2RC1 run fine under SMP and non-SMP Kernels) Any chances this will be addressed some time (or has already

Re: SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Pierre Héroux
The example helloworld.cpp gives me the same error. Here is my makefile. What's wrong Pierre JDK = /usr/local/jdk1.2.2 REP_INC = -I$(JDK)/include \ -I$(JDK)/include/linux REP_LIB = -L$(JDK)/lib/i386 \ -L$(JDK)/jre/lib/i386 \ -L$(JDK)/jre/lib/i386/classic \

Re: SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Juergen Kreileder
> Pierre Héroux writes: Pierre> I use JDK1.2.2 RC2 on RedHat 6.1. The following code Pierre> gives a SIGSEGV on JNI_CreateJavaVM. Could you tell me Pierre> where is the problem. Pierre> #include Pierre> #include Pierre> #include Pierre> int main(int argc, ch

SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Pierre Héroux
I use JDK1.2.2 RC2 on RedHat 6.1. The following code gives a SIGSEGV on JNI_CreateJavaVM. Could you tell me where is the problem. #include #include #include int main(int argc, char **argv) { JavaVM * jvm; JNIEnv * env; JavaVMInitArgs vm_args; vm_args.version = 0x00010001; JNI_Ge