1
1

Retain the ability to run valgrind on the bproc launcher - do not call bproc_version if "nolaunch" is specified.

This commit was SVN r12866.
Этот коммит содержится в:
Ralph Castain 2006-12-15 14:01:21 +00:00
родитель 64ec238b7b
Коммит cbb660504c

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

@ -105,9 +105,11 @@ orte_pls_base_module_t* orte_pls_bproc_init(int *priority) {
return NULL; return NULL;
/* okay, we are in an HNP - now check to see if BProc is running here */ /* okay, we are in an HNP - now check to see if BProc is running here */
ret = bproc_version(&version); if (!mca_pls_bproc_component.do_not_launch) {
if (ret != 0) { ret = bproc_version(&version);
return NULL; if (ret != 0) {
return NULL;
}
} }
/* only launch from the master node */ /* only launch from the master node */