up vote 4 down vote favorite
1
share [g+] share [fb]

With the StackOverflowException are the conditions to be thrown hardcoded or dependent on the machine the code is running on?

I am almost certain the latter but have failed in my searches and don't ask enough questions here.

link|improve this question

What exactly do you mean by conditions? It is thrown when the stack is full and a method attempts to allocate more space on the stack to hold local variables, and fails. Specifically, it is the "Localloc" IL opcode that throws this. – Lasse V. Karlsen Sep 10 '09 at 21:58
I mean if there is a hard limit to when the stack is filled essentially or is it some other percentage of memory or some other ratio of the current machine? – Pat Sep 11 '09 at 2:14
feedback

3 Answers

up vote 5 down vote accepted

From the documentation:

... is thrown when the execution stack overflows because it contains too many nested method calls.

Since the size of the stack is architecture-dependent and can even be overridden on a machine, yes, this value is not hard-coded, though it is generally pretty static on Windows. If I remember correctly, it is 1MB in size by default.

link|improve this answer
+1. Good answer. – David Stratton Sep 10 '09 at 22:01
feedback

Although not a perfect match for your question, see also:

http://stackoverflow.com/questions/1042345/how-do-you-change-default-stack-size-for-managed-executable-net

link|improve this answer
feedback

Stack frames will vary depending on the addressing mode of your OS. I believe x64 uses slightly larger stack frames. Keep in mind that the process space is capable of growing much more than on x86, so overall you should be able to configure your stack to accept more frames on x64, if RAM and swap file size are not an issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.