1
1

Update the error message to pinpoint the right location.

Thanks Tim.

This commit was SVN r31839.
Этот коммит содержится в:
George Bosilca 2014-05-20 20:08:42 +00:00
родитель 685f051557
Коммит db9660264e
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -190,7 +190,7 @@ mca_pml_bfo_component_init( int* priority,
allocator_component = mca_allocator_component_lookup( mca_pml_bfo.allocator_name );
if(NULL == allocator_component) {
opal_output(0, "mca_pml_bfo_component_open: can't find allocator: %s\n", mca_pml_bfo.allocator_name);
opal_output(0, "mca_pml_bfo_component_init: can't find allocator: %s\n", mca_pml_bfo.allocator_name);
return NULL;
}
@ -198,7 +198,7 @@ mca_pml_bfo_component_init( int* priority,
mca_pml_bfo_seg_alloc,
mca_pml_bfo_seg_free, NULL);
if(NULL == mca_pml_bfo.allocator) {
opal_output(0, "mca_pml_bfo_component_open: unable to initialize allocator\n");
opal_output(0, "mca_pml_bfo_component_init: unable to initialize allocator\n");
return NULL;
}

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

@ -256,7 +256,7 @@ mca_pml_ob1_component_init( int* priority,
allocator_component = mca_allocator_component_lookup( mca_pml_ob1.allocator_name );
if(NULL == allocator_component) {
opal_output(0, "mca_pml_ob1_component_open: can't find allocator: %s\n", mca_pml_ob1.allocator_name);
opal_output(0, "mca_pml_ob1_component_init: can't find allocator: %s\n", mca_pml_ob1.allocator_name);
return NULL;
}
@ -264,7 +264,7 @@ mca_pml_ob1_component_init( int* priority,
mca_pml_ob1_seg_alloc,
mca_pml_ob1_seg_free, NULL);
if(NULL == mca_pml_ob1.allocator) {
opal_output(0, "mca_pml_ob1_component_open: unable to initialize allocator\n");
opal_output(0, "mca_pml_ob1_component_init: unable to initialize allocator\n");
return NULL;
}