Native thread behaviour

1999-09-05 Thread Dimitris Terzis
Hi guys... Playing with native methods, I have created a very basic program that creates a TCP/IP socket from Java by using the corresponding C call (i.e., socket()). My code (excluding error handling parts) is something like: // File NativeSocketApplication.java public class NativeSocketApplic

Re: Native thread behaviour

1999-09-02 Thread Nathan Meyers
Dimitris Terzis wrote: > > Hi guys... > > Playing with native methods, I have created a very basic program that > creates a TCP/IP socket from Java by using the corresponding C call (i.e., > socket()). You are sending your output through two different mechanisms. The System.out.print mechanism

Native thread behaviour

1999-09-02 Thread Dimitris Terzis
Hi guys... Playing with native methods, I have created a very basic program that creates a TCP/IP socket from Java by using the corresponding C call (i.e., socket()). My code (excluding error handling parts) is something like: // File NativeSocketApplication.java public class NativeSocketApplic