In windows (or any other OS for that matter) what determines how much stack I can use? The name of this very website makes me assume it's possible to run out of stack so should I avoid putting large amounts of data on the stack?
|
|
It is language specific, Compiler specific and probably OS specific, but you should put large amount of data on the heap and not on the stack. There are ways to change the stack size - but I wouldn't mess with it ! If you want to know your stack size using trial and error - just create an array on the stack and see how much it lets you... |
||
|
|
|
|
Its completely OS specific and configurable, on linux you can check and change with the ulimit call in the shell. Depends on what you call large, my current Debians standard stack size is 8 megs, which is large enough to have large arrays of 1Meg for example. |
||
|
|
|
|
On Win32 the default stack size is 1MB, it can be adjusted when calling CreateThread() and in the compiler settings. |
||
|
|
|
|
The OS will set an upper bound, but you can set a specific limit with your linker, which usually has a specific default, often quite lower than what the OS will allow. |
||
|
|
|
|
You can set the stack size for your application in Visual Studio under
Although not recommended a a programing technique, its fairly simple to retrieve the amount of free stack space:
|
||
|
|
|
|
On Windows, for a native C/C++ project in Visual Studio, the stacksize for the initial/main thread is set using the linker's For subsequently spawned threads, See http://msdn.microsoft.com/en-us/library/ms686774.aspx for details. |
||
|
|
