2004-03-03 19:10:26 +03:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-03-03 19:10:26 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#ifndef OMPI_CONDITION_H
|
|
|
|
#define OMPI_CONDITION_H
|
2004-03-03 19:10:26 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-03-03 19:10:26 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_HAVE_POSIX_THREADS
|
2004-03-03 19:10:26 +03:00
|
|
|
#include "condition_pthread.h"
|
|
|
|
#else
|
2004-04-06 20:13:17 +04:00
|
|
|
#include "condition_spinlock.h"
|
2004-03-03 19:10:26 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|