Linux - GeneralThis forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hi, I'm fairly new to linux but I am a long time programmer.
I'm trying to understand how linux handles stacks. (Assume 2.6.x).
First, I'd like to know how to determine how large a particular process/thread's stack is. I found that I can 'cat /proc/####/status | grep -i vmstk" and get 'a number', but after several tests, I don't trust that this is the stack size. (I've found it hard to get good documentation on what VmStk is...)
Another method I tried to figure out approx how large a default stack is, was this program (reproduced from memory, so might have a few mistakes...) :
---------------------------------------------
void use_more_stack(void)
{
static int total_kb = 0;
For anyone reviewing this thread, note also, that the stack size in this case was for a single threaded program. Stack size allocated to additional threads would likely be much smaller, and would be bounded by its stack address and the previous stacks address. The first threads stack is, if I understand correctly, only bounded when it starts to run into stuff in the application space that sits underneath it.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.