1
1

Merge pull request #308 from elenash/master

restored _process_name_print_for_opal function in orte_init: it's requir...
Этот коммит содержится в:
elenash 2014-12-08 19:14:36 +03:00
родитель b757b3f452 6cf3925b09
Коммит baf32fe480

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

@ -60,6 +60,13 @@
* the runtime.
*/
static char*
_process_name_print_for_opal(const opal_process_name_t procname)
{
orte_process_name_t* rte_name = (orte_process_name_t*)&procname;
return ORTE_NAME_PRINT(rte_name);
}
static char*
_jobid_print_for_opal(const opal_jobid_t jobid)
{
@ -132,7 +139,7 @@ int orte_init(int* pargc, char*** pargv, orte_proc_type_t flags)
}
/* Convince OPAL to use our naming scheme */
// opal_process_name_print = _process_name_print_for_opal;
opal_process_name_print = _process_name_print_for_opal;
opal_vpid_print = _vpid_print_for_opal;
opal_jobid_print = _jobid_print_for_opal;
opal_compare_proc = _process_name_compare;