1
1
openmpi/src/threads/condition_pthread.c
David Daniel cbd3442979 Changes as suggested by Tim
This commit was SVN r2233.
2004-08-19 19:29:01 +00:00

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