1
1

Only "extern" globals in .h files; instantiate them elsewhere.

This commit was SVN r1539.
Этот коммит содержится в:
Jeff Squyres 2004-07-02 02:11:54 +00:00
родитель 6fad2560b7
Коммит 0232814ef9
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -19,7 +19,7 @@
* This is the first module on the list. This is here temporarily * This is the first module on the list. This is here temporarily
* to make things work * to make things work
*/ */
mca_oob_t mca_oob; extern mca_oob_t mca_oob;
/** /**
* the module data structure * the module data structure

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

@ -21,6 +21,7 @@
/* /*
* Global variables * Global variables
*/ */
mca_oob_t mca_oob;
int mca_oob_base_output = -1; int mca_oob_base_output = -1;
ompi_list_t mca_oob_base_components; ompi_list_t mca_oob_base_components;
ompi_list_t mca_oob_base_modules; ompi_list_t mca_oob_base_modules;