1
1

Move the carto finalize from the util finalize to the main finalize where it belongs. Otherwise, the modules are unloaded by the mca before we try to do carto_finalize, and bad things happen.

This commit was SVN r17665.
Этот коммит содержится в:
Tim Prins 2008-02-29 12:49:04 +00:00
родитель c253a7bda1
Коммит 824c298abf

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

@ -58,9 +58,6 @@ opal_finalize_util(void)
return OPAL_SUCCESS;
}
/* close the carto framework */
opal_carto_base_close();
/* Clear out all the registered MCA params */
mca_base_param_finalize();
@ -129,6 +126,9 @@ opal_finalize(void)
/* finalize the memory manager / tracker */
opal_mem_hooks_finalize();
/* close the carto framework */
opal_carto_base_close();
/* close the processor affinity base */
opal_paffinity_base_close();