i am reading pthreads from https://computing.llnl.gov/tutorials/pthreads/ and it says
Default thread stack size varies greatly. The maximum size that can be obtained also varies greatly, and may depend upon the number of threads per node. Both past and present architectures are shown to demonstrate the wide variation in default thread stack size.
then it lists some default values for a couple of processors, but it never says 0 for any processor. So i copy pasted its C program and executed. The relevant part being :
size_t stacksize;
pthread_attr_init(&attr);
pthread_attr_getstacksize (&attr, &stacksize);
printf("Default stack size = %li\n", stacksize);
i get the output :
Default stack size = 0
Why 0 ?
PTHREAD_STACK_MIN Minimum size in bytes of thread stack storage. Minimum Acceptable Value: 0. I suspect that's the case here since it'spthread_initsetting that value, not the user viapthread_setstacksize. I would thinkinitwould set a valid value for use inpthread_create. – paxdiablo Feb 19 '12 at 2:18