OpenMPI  0.1.1
btl_self_endpoint.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
3  * University Research and Technology
4  * Corporation. All rights reserved.
5  * Copyright (c) 2004-2005 The University of Tennessee and The University
6  * of Tennessee Research Foundation. All rights
7  * reserved.
8  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9  * University of Stuttgart. All rights reserved.
10  * Copyright (c) 2004-2005 The Regents of the University of California.
11  * All rights reserved.
12  * $COPYRIGHT$
13  *
14  * Additional copyrights may follow
15  *
16  * $HEADER$
17  */
18 /**
19  * @file
20  */
21 #ifndef MCA_BTL_SELF_ENDPOINT_H
22 #define MCA_BTL_SELF_ENDPOINT_H
23 
24 #if OMPI_ENABLE_PROGRESS_THREADS == 1
25 #include "opal/mca/event/event.h"
26 #endif
27 
28 /**
29  * An abstraction that represents a connection to a endpoint process.
30  * An instance of mca_ptl_base_endpoint_t is associated w/ each process
31  * and BTL pair at startup.
32  */
33 
35  int my_selfp_rank; /**< My SELFP process rank. Used for accessing
36  * SELFP specfic data structures. */
37  int peer_selfp_rank; /**< My peer's SELFP process rank. Used for accessing
38  * SELFP specfic data structures. */
39 };
40 
41 #endif
42 
int my_selfp_rank
My SELFP process rank.
Definition: btl_self_endpoint.h:35
State of ELAN endpoint connection.
Definition: btl_elan_endpoint.h:33
int peer_selfp_rank
My peer's SELFP process rank.
Definition: btl_self_endpoint.h:37