* Made instances of peer_list and peer_tree in header file into externs and
added instances in .c file. This commit was SVN r1610.
Этот коммит содержится в:
родитель
da19f74e72
Коммит
1ebac92718
@ -49,6 +49,9 @@ int mca_oob_tcp_close(void)
|
||||
return OMPI_ERROR;
|
||||
}
|
||||
|
||||
ompi_list_t mca_oob_tcp_peer_list;
|
||||
ompi_rb_tree_t mca_oob_tcp_peer_tree;
|
||||
|
||||
/*
|
||||
* this function will temporarily return NULL so we don't use it
|
||||
*/
|
||||
|
@ -18,11 +18,12 @@
|
||||
/*
|
||||
* the list of peers
|
||||
*/
|
||||
ompi_list_t mca_oob_tcp_peer_list;
|
||||
extern ompi_list_t mca_oob_tcp_peer_list;
|
||||
|
||||
/*
|
||||
* the tree of peers
|
||||
*/
|
||||
ompi_rb_tree_t mca_oob_tcp_peer_tree;
|
||||
extern ompi_rb_tree_t mca_oob_tcp_peer_tree;
|
||||
|
||||
|
||||
#if defined(c_plusplus) || defined(__cplusplus)
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user