2005-07-27 23:46:36 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2008-10-23 00:12:30 +04:00
|
|
|
* Copyright (c) 2004-2008 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-07-27 23:46:36 +04:00
|
|
|
* 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$
|
|
|
|
*/
|
|
|
|
|
2005-09-05 02:08:13 +04:00
|
|
|
#ifndef MCA_BTL_MX_PROC_H
|
|
|
|
#define MCA_BTL_MX_PROC_H
|
2005-07-27 23:46:36 +04:00
|
|
|
|
|
|
|
#include "opal/class/opal_object.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/proc/proc.h"
|
2005-07-28 23:53:27 +04:00
|
|
|
#include "btl_mx.h"
|
|
|
|
#include "btl_mx_endpoint.h"
|
2005-07-27 23:46:36 +04:00
|
|
|
|
2008-10-23 00:12:30 +04:00
|
|
|
BEGIN_C_DECLS
|
2005-07-27 23:46:36 +04:00
|
|
|
|
2008-10-23 00:12:30 +04:00
|
|
|
/**
|
|
|
|
* Represents the state of a remote process and the set of addresses
|
|
|
|
* that it exports. Also cache an instance of mca_btl_base_endpoint_t for
|
|
|
|
* each BTL instance that attempts to open a connection to the process.
|
|
|
|
*/
|
|
|
|
struct mca_btl_mx_proc_t {
|
|
|
|
opal_list_item_t super;
|
|
|
|
/**< allow proc to be placed on a list */
|
|
|
|
|
|
|
|
ompi_proc_t *proc_ompi;
|
|
|
|
/**< pointer to corresponding ompi_proc_t */
|
|
|
|
|
|
|
|
mca_btl_mx_addr_t *mx_peers; /**< peers addresses */
|
|
|
|
int mx_peers_count;
|
|
|
|
int* mx_routing; /**< peer routing information */
|
|
|
|
|
|
|
|
opal_mutex_t proc_lock;
|
|
|
|
/**< lock to protect against concurrent access to proc state */
|
|
|
|
};
|
|
|
|
typedef struct mca_btl_mx_proc_t mca_btl_mx_proc_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_btl_mx_proc_t);
|
|
|
|
|
|
|
|
mca_btl_mx_proc_t* mca_btl_mx_proc_create(ompi_proc_t* ompi_proc);
|
|
|
|
int mca_btl_mx_proc_insert(mca_btl_mx_proc_t*, mca_btl_base_endpoint_t*);
|
|
|
|
int mca_btl_mx_proc_connect( mca_btl_mx_endpoint_t* module_endpoint );
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
|
|
|
#endif /* MCA_BTL_MX_PROC_H */
|