![]()  | 
![]()  | 
![]()  | 
![]()  | 
Get the thread stack-size attribute
#include <pthread.h>
int pthread_attr_getstacksize(
                    const pthread_attr_t* attr,
                    size_t* stacksize );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_attr_getstacksize() function gets the thread stack size attribute from the thread attribute object attr and returns it in stacksize.
You can set the stack size by calling pthread_attr_setstacksize().
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | No | 
| Signal handler | Yes | 
| Thread | Yes | 
pthread_attr_setstacksize(), pthread_attr_init(), pthread_create().
Processes and Threads chapter of Getting Started with QNX Neutrino
![]()  | 
![]()  | 
![]()  | 
![]()  |