Re: Java & Multithread

2001-03-21 Thread Peter Schuller
> If I don't call Java all is ok. If I call Java (my simple "Hello Word" > Java class) the application exits with "segmentation fault" after some > seconds of splatting. I'm sure someone who knows more will respond; but could it be a signaling handling conflict? I don't know about pthreads specif

Re: JAVA multithread questions.

1999-07-13 Thread jools enticknap
Hi This sort of problem is fairly common and Java is more than capable of dealing with it. I would guess from the questions that you have asked, you need a little information on both Threads and the networking API. There are two resources that I would recommend; 1) The Java Tutorial

Re: JAVA multithread questions.

1999-07-08 Thread Alex M.
You create threads by making classes that implement runnable or extend thread. Calling .start() on those classes will make the code in the run() method of those classes execute in a new thread. So, that code should be your network connecting code. Good place to start is java.sun.com, follow the