2004-10-23 23:49:29 +04: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.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-23 23:49:29 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
#ifndef MCA_PTL_MX_PEER_H
|
|
|
|
#define MCA_PTL_MX_PEER_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2004-10-25 17:33:30 +04:00
|
|
|
#include <myriexpress.h>
|
2004-10-23 23:49:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An abstraction that represents a a peer process.
|
|
|
|
*/
|
|
|
|
struct mca_ptl_base_peer_t {
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t peer_item;
|
2004-10-25 17:33:30 +04:00
|
|
|
mx_endpoint_addr_t peer_addr;
|
|
|
|
struct mca_ptl_mx_module_t* peer_ptl;
|
|
|
|
struct mca_ptl_mx_proc_t* peer_proc;
|
2004-11-18 01:47:08 +03:00
|
|
|
bool peer_nbo;
|
2004-10-23 23:49:29 +04:00
|
|
|
};
|
|
|
|
typedef struct mca_ptl_base_peer_t mca_ptl_base_peer_t;
|
|
|
|
typedef struct mca_ptl_base_peer_t mca_ptl_mx_peer_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_ptl_mx_peer_t);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|