vote up 3 vote down star
1

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.

flag

75% accept rate
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 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 at 2:14

2 Answers

vote up 5 vote down check

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|flag
+1. Good answer. – David Stratton Sep 10 at 22:01
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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