[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions, Volume 1

pthread_cond_destroy or pthread_cond_init Subroutine

Purpose

Initialize and destroys condition variables.

Library

Threads Library (libpthreads.a)

Syntax

#include <pthread.h>

int pthread_cond_init (cond, attr)
pthread_cond_t *cond;
const pthread_condattr_t *attr;

int pthread_cond_destroy (cond)
pthread_cond_t *cond;

pthread_cond_t cond = PTHREAD_COND_INTITIALIZER;

Description

The function pthread_cond_init initializes the condition variable referenced by cond with attributes referenced by attr. If attr is NULL, the default condition variable attributes are used; the effect is the same as passing the address of a default condition variable attributes object. Upon successful initialization, the state of the condition variable becomes initialized.

Attempting to initialize an already initialized condition variable results in undefined behavior.

The function pthread_cond_destroy destroys the given condition variable specified by cond; the object becomes, in effect, uninitialized. An implementation may cause pthread_cond_destroy to set the object referenced by cond to an invalid value. A destroyed condition variable object can be re-initialized using pthread_cond_init; the results of otherwise referencing the object after it has been destroyed are undefined.

It is safe to destroy an initialized condition variable upon which no threads are currently blocked. Attempting to destroy a condition variable upon which other threads are currently blocked results in undefined behavior.

In cases where default condition variable attributes are appropriate, the macro PTHREAD_COND_INITIALIZER can be used to initialize condition variables that are statically allocated. The effect is equivalent to dynamic initialization by a call to pthread_cond_init with parameter attr specified as NULL, except that no error checks are performed.

Parameters

cond Pointer to the condition variable.
attr Specifies the attributes of the condition.

Return Values

If successful, the pthread_cond_init and pthread_cond_destroy functions return zero. Otherwise, an error number is returned to indicate the error. The EBUSY and EINVAL error checks, if implemented, act as if they were performed immediately at the beginning of processing for the function and caused an error return prior to modifying the state of the condition variable specified by cond.

Error Codes

The pthread_cond_init function will fail if:

EAGAIN The system lacked the necessary resources (other than memory) to initialize another condition variable.
ENOMEM Insufficient memory exists to initialize the condition variable.

The pthread_cond_init function may fail if:

EINVAL The value specified by attr is invalid.

The pthread_cond_destroy function may fail if:

EBUSY The implementation has detected an attempt to destroy the object referenced by cond while it is referenced (for example, while being used in a pthread_cond_wait or pthread_cond_timedwait by another thread.
EINVAL The value specified by cond is invalid.

These functions will not return an error code of EINTR.

Related Information

The pthread_cond_signal or pthread_cond_broadcast (pthread_cond_signal or pthread_cond_broadcast Subroutine) subroutine and the pthread_cond_wait or pthread_cond_timewait (pthread_cond_wait or pthread_cond_timedwait Subroutine) subroutine.

The pthread.h file.

Using Condition Variables in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.

Threads Library Quick Reference in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]