[Previous] [Contents] [Next]

pthread_attr_getguardsize()

Get the thread guardsize attribute

Synopsis:

#include <pthread.h>

int pthread_attr_getguardsize( 
             const pthread_attr_t* attr,
             size_t* guardsize );

Library:

libc

Description:

The pthread_attr_getguardsize() function gets the value of the thread guardsize attribute from the attribute structure attr.

See pthread_attr_setguardsize() for more information about the thread guardsize attribute.

Returns:

EOK
Success.
EINVAL
Invalid pointer, attr, to a pthread_attr_t structure.

Classification:

Standard Unix

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

See also:

pthread_attr_setguardsize()


[Previous] [Contents] [Next]