guys. I have a question about the stack size of a process on Linux. Is this stack size determined at linkage time and is coded in the ELF file? I wrote a program which print its stack size by pthread_attr_getstacksize(&attr, &stacksize);. And if I run this program directly from shell, it gives a value of about 10MB. But when I exec it from a thread which belongs to a multi-thread program, it gives a value of about 2MB.
So I wanna know what factors there are that affects the stack size of a process which is fork and exec-ed from some parent process. And Is is possible to set the stack size of a process in its parent at run time before fork and exec the child?
Thanks in advance.
|
| |||
|
feedback
|
|
As the manpage for pthread_create(3) says: "On Linux/x86-32, the default stack size for a new thread is 2 megabytes", Unless the You can check this fact by retrieving the current value of RLIMIT_STACK with getrlimit(2), as in the following program:
These are the results when trying to run it (compiled to
| |||||||
feedback
|