What I have read from MSDN,

Each new thread or fiber receives its own stack space consisting of both reserved and initially committed memory.

Does the word 'stack' here really mean a 'call stack' or does it mean that it gets piece of memory that is called a stack?

link|improve this question

75% accept rate
Note the use of stack space. It is the chunk of virtual memory in which the call stack lives. – Hans Passant Sep 7 '11 at 18:31
feedback

2 Answers

up vote 0 down vote accepted

The call stack lives on the stack. Each thread or fiber has its own private stack and that's what the topic you link to is discussing.

link|improve this answer
feedback

That is referring to the call stack - each thread/fiber needs its own to function. Is there a reason that you think it wouldn't be the call stack?

link|improve this answer
I was confused because I didn't read it mention anywhere or maybe because it got me the wrong idea. thanks – user746341 Sep 7 '11 at 17:51
feedback

Your Answer

 
or
required, but never shown

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