2004-10-23 19:49:29 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-23 19:49:29 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
#ifndef MCA_PTL_MX_PEER_H
|
|
|
|
#define MCA_PTL_MX_PEER_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2004-10-25 13:33:30 +00:00
|
|
|
#include <myriexpress.h>
|
2004-10-23 19:49:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An abstraction that represents a a peer process.
|
|
|
|
*/
|
|
|
|
struct mca_ptl_base_peer_t {
|
2005-07-03 16:22:16 +00:00
|
|
|
opal_list_item_t peer_item;
|
2004-10-25 13:33:30 +00: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-17 22:47:08 +00:00
|
|
|
bool peer_nbo;
|
2004-10-23 19:49:29 +00: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
|
|
|
|
|