1
1

- Since r22727 orte_app_idx_t was introduced, being a uint32_t (was

previously an orte_std_cntr_t, which is int32_t).
   Comparison with < 0 don't make any sense, here.

This commit was SVN r22799.

The following SVN revision numbers were found above:
  r22727 --> open-mpi/ompi@2541aa98ab
Этот коммит содержится в:
Rainer Keller 2010-03-08 22:56:33 +00:00
родитель cf6ff296ec
Коммит 0feb158aaf

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

@ -174,10 +174,7 @@ int ompi_attr_create_predefined(void)
return ret;
}
/* check the app_num - if it was set, then define it - otherwise, don't */
if (orte_process_info.app_num >= 0) {
ret = set_f(MPI_APPNUM, orte_process_info.app_num);
}
return ret;
}