30 строки
519 B
C
30 строки
519 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "ompi_config.h"
|
|
#endif
|
|
|
|
#include "mutex.h"
|
|
#include "condition.h"
|
|
|
|
#if OMPI_HAVE_POSIX_THREADS
|
|
|
|
static void ompi_condition_construct(ompi_condition_t *c)
|
|
{
|
|
pthread_cond_init(&c->c_cond, NULL);
|
|
}
|
|
|
|
static void ompi_condition_destruct(ompi_condition_t *c)
|
|
{
|
|
pthread_cond_destroy(&c->c_cond);
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(ompi_condition_t,
|
|
ompi_object_t,
|
|
ompi_condition_construct,
|
|
ompi_condition_destruct);
|
|
|
|
#endif
|