That's an insane stack size! Each thread has its own stack, so the JVM will allocate 64m per thread spawned under that config. If I remember correctly, the default stack size is 512k so try -Xss2m instead.
Cheers, Chris On Jun 3, 2:45 am, Carl Pritchett <[email protected]> wrote: > Have you tried compiling with -Xss64m as a VM arg? > > -Carl > > On Jun 2, 4:35 pm, SunilBansal <[email protected]> wrote: > > > same code is working fine on GWT 1.5 and it's also showing the > > following message > > > Gwt module 'module name' needs to be (re)compiled,please run a compile > > or use the Compile/Browse button in hosted mode > > > On Jun 2, 11:18 am, Sanj <[email protected]> wrote: > > > > HI All, > > > > I am trying to shift on GWT 1.6. But when i compiled my code on GWT > > > 1.6 then i face some compilation issue. The Exception stack trace is > > > showing as :- > > > > [ERROR] Unexpected internal compiler error > > > java.lang.StackOverflowError: null > > > at java.io.ObjectStreamClass$FieldReflector.getPrimFieldValues > > > (Unknown Source) > > > at java.io.ObjectStreamClass.getPrimFieldValues(Unknown Source) > > > at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source) > > > at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source) > > > at java.util.ArrayList.writeObject(Unknown Source) > > > at sun.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > > > at java.lang.reflect.Method.invoke(Unknown Source) > > > at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeSerialData(Unknown Source) > > > at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject0(Unknown Source) > > > at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source) > > > at java.io.ObjectOutputStream.writeSerialData(Unknown Source) > > > at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject0(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject(Unknown Source) > > > at java.util.ArrayList.writeObject(Unknown Source) > > > at sun.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > > > at java.lang.reflect.Method.invoke(Unknown Source) > > > at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeSerialData(Unknown Source) > > > at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject0(Unknown Source) > > > at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source) > > > at java.io.ObjectOutputStream.writeSerialData(Unknown Source) > > > at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject0(Unknown Source) > > > at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source) > > > at java.io.ObjectOutputStream.writeSerialData(Unknown Source) > > > at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject0(Unknown Source) > > > at java.io.ObjectOutputStream.writeObject(Unknown Source) > > > at java.util.ArrayList.writeObject(Unknown Source) > > > at sun.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) > > > at java.lang.reflect.Method.invoke(Unknown Source) > > > > I am using GWT 1.6, GWT-EXT 2.0.4 and Gilead. Is this problem coming > > > because of Old version of GWT-Ext old version. > > > > Thanks and regards, > > > > Sunil Bansal. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
