![]() |
![]() |
![]() |
Get thread stack size attribute
#include <pthread.h> int pthread_attr_getstacksize( const pthread_attr_t* attr, size_t* stacksize );
libc
The pthread_attr_getstacksize() function gets the thread stack size attribute from the thread attribute object attr and returns it in stacksize. See the pthread_attr_setstacksize() function for the possible values of stacksize.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
pthread_attr_setstacksize(), pthread_attr_init(), pthread_create().
![]() |
![]() |
![]() |