zouqiong wrote:
> i solve the problem if i used the jdk1.5
> 
> platfrom: fc5, gcc-3.4.6, jdk1.5
> 
> and i find that the java replaced ij..     :-)
> and i use the new java to compile my application, however new problem
> encounters,
> there is no error information comes out,  it seems that it has stopped to
> compile the
> application, but still running.

Is it spending any CPU cycles?
If it is spending CPU, then it must be some infinite loop.
If it is sleeping, it is most likely some sort of a deadlock.
 
> so i use gdb to trace it,  and i use bt commond, you can see the stack.

The stack you have provided shows the the starter thread which is waiting
for other threads to complete. This is perfectly normal, and gives no
information on what went wrong. 
You may want to see the backtraces from other threads to find out the reason of 
hang.


---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to