vote up 2 vote down star

I wonder if stack size can grow like heap does during runtime?

flag

Uh, sorry Rachel, I don't think this is really about data structures. Edit reverted. – Chris Lutz Nov 3 at 5:35

4 Answers

vote up 4 vote down check

The amount of stack used certainly increases, as you allocate local variables and make function calls. Whether the stack's maximum size can grow is technically undefined, but in practice is generally constant. You can make the constant bigger with a flag to the OS, but usually each thread gets a certain size of stack. When you use too much, it's a stack overflow.

link|flag
Is there command to see the stack size that is determined by the OS ? – tsubasa Nov 3 at 5:28
What are you trying to solve? When asking a question, tell us your goal, not your plan. – GMan Nov 3 at 5:33
1  
@tsubasa: On Windows the stack size is part of the PE header in the image file. To inspect the stack size in an image use dumpbin /headers. – Brian Rasmussen Nov 3 at 6:30
vote up 1 vote down

I think that the executable stack size is defind by the compiler/linker.. so you can change it but not on runtime. You can change the stack size of a thread. + everything is compiler and os specific, so there is no single answer here.

link|flag
vote up 0 vote down

From what I can remember stacks generally operate under the assumption that they exist in a contiguous memory range. Basically the expect the next stack frame to be in the next bit of memory (this helps it run faster not having to do instruction look up). Like others have said it is possible but i don't think it is widely used.

link|flag
vote up 1 vote down

The stack size actually allocated can grow on modern desktop operating systems.

In practice it is implemented in terms of the memory management unit. As memory is accessed beyond the current committed pages of the stack, new memory pages are committed in. Only the pages that are actually used (plus one guard page usually) are used in RAM. Maximum stack space can be controlled through system resource limits. For example on POSIX.1-2001 you can query the process maximum stack size with getrlimit().

On the other hand, old operating systems and many embedded systems, lacking a hardware-based memory management unit, do set a fixed limit on the stack size.

link|flag

Your Answer

Get an OpenID
or

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