Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
change message a bit
[simgrid.git] / src / smpi / internals / smpi_global.cpp
index ca57aba..5cf7025 100644 (file)
@@ -65,7 +65,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (ke
 #endif
 
 #if HAVE_PAPI
-std::string papi_default_config_name = "default";
 std::map</* computation unit name */ std::string, papi_process_data, std::less<>> units2papi_setup;
 #endif
 
@@ -635,9 +634,10 @@ void SMPI_finalize()
 
   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP)
     smpi_destroy_global_memory_segments();
+
   if (simgrid::smpi::F2C::lookup() != nullptr &&
       simgrid::smpi::F2C::lookup()->size() > simgrid::smpi::F2C::get_num_default_handles()) {
-    XBT_WARN("Probable Leaks in your code: SMPI detected %zu unfreed MPI handles : "
+    XBT_WARN("Probable memory leaks in your code: SMPI detected %zu unfreed MPI handles : "
              "display types and addresses (n max) with --cfg=smpi/list-leaks:n.\n"
              "Running smpirun with -wrapper \"valgrind --leak-check=full\" can provide more information",
              simgrid::smpi::F2C::lookup()->size() - simgrid::smpi::F2C::get_num_default_handles());