2007-03-17 02:11:45 +03:00
|
|
|
/*
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University.
|
2007-03-17 02:11:45 +03:00
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
2008-09-10 22:29:17 +04:00
|
|
|
* Hoke CRCP component
|
2007-03-17 02:11:45 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-09-10 22:29:17 +04:00
|
|
|
#ifndef MCA_CRCP_HOKE_EXPORT_H
|
|
|
|
#define MCA_CRCP_HOKE_EXPORT_H
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "ompi/mca/crcp/crcp.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "opal/runtime/opal_cr.h"
|
|
|
|
#include "opal/threads/mutex.h"
|
|
|
|
#include "opal/threads/condition.h"
|
2007-09-16 19:13:23 +04:00
|
|
|
#include MCA_timer_IMPLEMENTATION_HEADER
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local Component structures
|
|
|
|
*/
|
2008-09-10 22:29:17 +04:00
|
|
|
struct ompi_crcp_bkmrk_component_t {
|
2007-03-17 02:11:45 +03:00
|
|
|
ompi_crcp_base_component_t super; /** Base CRCP component */
|
|
|
|
};
|
2008-09-10 22:29:17 +04:00
|
|
|
typedef struct ompi_crcp_bkmrk_component_t ompi_crcp_bkmrk_component_t;
|
|
|
|
OMPI_MODULE_DECLSPEC extern ompi_crcp_bkmrk_component_t mca_crcp_bkmrk_component;
|
2007-03-17 02:11:45 +03:00
|
|
|
|
2007-09-16 19:13:23 +04:00
|
|
|
/*
|
|
|
|
* Local variables
|
|
|
|
*/
|
2008-05-14 23:54:20 +04:00
|
|
|
extern int timing_enabled;
|
2007-09-16 19:13:23 +04:00
|
|
|
|
2007-03-17 02:11:45 +03:00
|
|
|
/*
|
|
|
|
* Module functions
|
|
|
|
*/
|
2008-09-10 22:29:17 +04:00
|
|
|
int ompi_crcp_bkmrk_component_query(mca_base_module_t **module, int *priority);
|
|
|
|
int ompi_crcp_bkmrk_module_init(void);
|
|
|
|
int ompi_crcp_bkmrk_module_finalize(void);
|
2007-03-17 02:11:45 +03:00
|
|
|
|
2008-09-10 22:29:17 +04:00
|
|
|
int ompi_crcp_bkmrk_pml_init(void);
|
|
|
|
int ompi_crcp_bkmrk_pml_finalize(void);
|
2007-03-17 02:11:45 +03:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-09-10 22:29:17 +04:00
|
|
|
#endif /* MCA_CRCP_HOKE_EXPORT_H */
|