[Previous] [Contents] [Next]

pthread_attr_getstacksize()

Get thread stack size attribute

Synopsis:

#include <pthread.h>

int pthread_attr_getstacksize(
                    const pthread_attr_t* attr,
                    size_t* stacksize );

Library:

libc

Description:

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.

Returns:

EOK
Success.

Classification:

POSIX 1003.1 (Threads)

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

pthread_attr_setstacksize(), pthread_attr_init(), pthread_create().


[Previous] [Contents] [Next]