1
1

Ok, it's *not* enough to only have one of the files compilable. Need

to make them all compilable.

#if 0'ed out one section in soh_base_open.c that needs to be fixed.

This commit was SVN r3841.
Этот коммит содержится в:
Jeff Squyres 2004-12-17 03:20:39 +00:00
родитель 63474e0232
Коммит ae5180aa3b
3 изменённых файлов: 6 добавлений и 3 удалений

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

@ -29,9 +29,7 @@ headers = \
libmca_soh_base_la_SOURCES = \
$(headers) \
soh_base_close.c
for_ralph_to_fix = \
soh_base_close.c \
soh_base_select.c \
soh_base_open.c

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

@ -43,7 +43,11 @@
*/
int mca_soh_base_output = -1;
mca_soh_base_module_t ompi_soh_monitor = {
#if RALPH_NEEDS_TO_FIX
mca_soh_base_update_cell_soh_not_available;
#else
NULL
#endif
};
bool mca_soh_base_selected = false;
ompi_list_t mca_soh_base_components_available;

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

@ -15,6 +15,7 @@
#include "ompi_config.h"
#include "include/constants.h"
#include "mca/mca.h"
#include "mca/base/base.h"