As far as I know there is no default. When JVM reads .class files it dynamically determines stack size to be allocated based on field types. ----- Original Message ----- From: "Shai Deljo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, June 17, 2001 12:53 PM Subject: RE: Xss > do u know what is the deafult stack size in > Java(TM) 2 SDK, Standard Edition > Version 1.3.0 for Linux ?? > > + i tested the Xss before and it didn't seem to work ?! > > > Shai > > -----Original Message----- > From: Luba Powell [mailto:[EMAIL PROTECTED]] > Sent: Sunday, June 17, 2001 6:59 PM > To: [EMAIL PROTECTED] > Subject: Re: Xss > > > If you do: > java -X > you will see all extended options. Xms and Xmx are for heap. > The only way that I know how to set stack size is in JVM Assembler. > It is normally done in the method: > > .method > .limit stack 3 > .limit locals 4 > > After all each thread must have it's own stack. So I really don't know > what the global possibilities are available > > > > > ----- Original Message ----- > From: "Shai Deljo" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Sunday, June 17, 2001 11:44 AM > Subject: Xss > > > > > > > Hi, > > > > > > Xss parameter (Java ...) Doesn't seem to have any effect when i run a > > > Tomcat (Linux). > > > Does anybody know how to set the stack size ? (Native + Java) > > > > > > 10x > > > Shai > >
