1
1

* Made instances of peer_list and peer_tree in header file into externs and

added instances in .c file.

This commit was SVN r1610.
Этот коммит содержится в:
Brian Barrett 2004-07-10 01:27:07 +00:00
родитель da19f74e72
Коммит 1ebac92718
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -49,6 +49,9 @@ int mca_oob_tcp_close(void)
return OMPI_ERROR; 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 * this function will temporarily return NULL so we don't use it
*/ */

Просмотреть файл

@ -18,11 +18,12 @@
/* /*
* the list of peers * 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 * 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) #if defined(c_plusplus) || defined(__cplusplus)