Re: Graph Package

2000-06-04 Thread David Craig
Perhaps this will work for your needs? http://www.jrefinery.com/jfreechart/index.html --- yangyuex <[EMAIL PROTECTED]> wrote: > > > > Who can tell me where I can find a good Graph > Package? > I already find some things from IBM and JDSL. But I > am > not satisfied with them. > Who can suggest

Re: Multi-Threading: Preemptive?

1999-02-24 Thread David Craig
s Raser wrote: > > > > > On Wed, 24 Feb 1999, David Craig wrote: > > > Java doesn't define how threads of the same priority share cpu time In > > > some VM implementations the sharing is fair. On others, such as the port > > > you're probably using, one th

Re: Multi-Threading: Preemptive?

1999-02-24 Thread David Craig
Java doesn't define how threads of the same priority share cpu time In some VM implementations the sharing is fair. On others, such as the port you're probably using, one thread preempts the other indefinitely. Congrats on an elegant workaround. :) Cheers, David e-mail: [EMAIL PROTECTED], the r

Re: jdk 1.1.7.1a / tya 1.2v3 performance?

1999-02-17 Thread David Craig
this list. Its website boasts performance results that are usually better than TYA 1.2v3, and I'd be curious to hear about it's ease of use. (http://www.shudo.net/jit/) David Craig e-mail: [EMAIL PROTECTED], the rest: http://www.csrd.uiuc.edu/~dcraig On Wed, 17 Feb 1999, Artur Biesiad

Re: jvm source

1999-02-10 Thread David Craig
Get the a license agreement and then the sources at: http://www.java.sun.com/products/jdk/1.1/source.html Then download the relevant source patch from: http://www.blackdown.org (To my knowledge, the patch for Java2 isn't complete, yet. However, looking at the Solaris build is a good place to se

Re: Green/Native threads

1999-02-07 Thread David Craig
I don't know much about the specifics of linuxthreads, but pthreads are usually implemented with a group of kernel threads (supplied by clone() syscall in this case, and they're definitely "light-weight" processes). Perhaps, they've been referred to as "heavy-weight" just as a term relative to gre