1
1

Fix a missing include file in ompi_rte_wait that caused the build to fail.

Minor change to oob_base_init - point oob_name_self at correct name.

This commit was SVN r2868.
Этот коммит содержится в:
Ralph Castain 2004-09-28 10:33:09 +00:00
родитель a6963be12e
Коммит b5e21eaac3
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -236,7 +236,7 @@ int mca_oob_base_module_init(void)
ompi_list_item_t* item;
/* setup self to point to actual process name */
mca_oob_name_self = *mca_pcmclient.pcmclient_get_self();
mca_oob_name_self = *ompi_process_info.name;
/* Initialize all modules after oob/gpr/ns have initialized */
for (item = ompi_list_get_first(&mca_oob_base_modules);

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

@ -6,6 +6,7 @@
#include <assert.h>
#include <errno.h>
#include <sys/signal.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>