heap size

2000-01-30 Thread yangyuex
Hi, How to restrict the initial/Max heap size when the Java VM is started? Thanks very much! yang -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Thread and Garbage collection

2000-05-16 Thread yangyuex
Hi I have several threads in one hashtable. When I remove one of them, whether this thread still consume CPU etc resources? That's to say, if I will not need one thread, whether I must stop or destory it explictly or just remove it from hashtable for garbage collection? I am not sure how JVM sch

Re: Thread and Garbage collection

2000-05-17 Thread yangyuex
   catch(InterruptedException e) {    e.printStackTrace();    return;    }    }        }    } Cheers Chris yangyuex wrote: Hi I have several threads in one hashtable. When I remove one of them, whether this thread still  consume CPU etc resources? That'

Objects and Serialization

2000-05-20 Thread yangyuex
Dear Sir I am new to object serialization. I want to use some graph package of which the classes do not extend from serializable interface, but I need transfer the objects of my classes which have instance of graph class, will I have problem if I only extent serializable in the definition of my

JVM INSTR pop;????????

2000-05-20 Thread yangyuex
Hi, Who can tell me what's mean of "JVM INSTR pop; " in my attatched file. When I compiler the attatched file, the compiler complains that it does not support "goto", so I decided to understand this small program that I can rewrite it. Thanks very much! Yangyuexiang public boolean isT

gotos and JVM instructions

2000-05-21 Thread yangyuex
Dear Sir I am sorry to trouble you. I am a student. My problem is like this: Because I want to use a graph package from others (No source codes), unfortunately, its GraphObject.class never implements "Serializable" interface. But I want to transfer graph object between different JVMs. So, I try

Re: RMI ClassNotFoundException - help!

2000-05-22 Thread yangyuex
It seems that your programs are within one package. Try to ask yourself how the server or client can get your classes in the http server. The error "multipi.Interaction_Stub not found" says that in your code base, there is no multipi directory. regards yangyuexiang James Sinnamon wrote: > D

libjvm.so not found

2000-06-01 Thread yangyuex
Hi, I just try to use IBMJava2-13. I cannot run java in other directory other than /opt/IBMJava2-13/. However, I already : export PATH=/op/IBMJava2-13/bin:/opt/IBMJava2-13/jre/bin:$PATH When I run java in other directory, the error occurred: "cannot find libjvm.so". However, I am sure this file

Graph Package

2000-06-03 Thread yangyuex
> 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 some others? Thanks yangyuexiang -- To UNSUBSCRIBE, email to [EMAIL PROT