[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

pthread_barrierattr_init()

Initialize a barrier attributes object

Synopsis:

#include <pthread.h>

int pthread_barrierattr_init( 
                   pthread_barrierattr_t * attr );

Arguments:

attr
A pointer to the pthread_barrierattr_t object that you want to initialize.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The pthread_barrierattr_init() function initializes the barrier attributes object attr with the default value for all of the attributes.

Returns:

EOK
Success.
ENOMEM
Insufficient memory to initialize barrier attribute object attr.

Classification:

POSIX 1003.1 THR BAR

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

See also:

pthread_barrier_init(), pthread_barrierattr_destroy(), pthread_barrierattr_getpshared(), pthread_barrierattr_setpshared()


[Previous] [Contents] [Index] [Next]