X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1928b36ff7a719c88d3db6b4e685bed8f544c7da..891abf1a3579d0e378a6e1b3426e5c34b23a58ad:/src/simix/smx_global.cpp diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index e79e69bf0c..7643bddd11 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -217,10 +217,6 @@ void SIMIX_global_init(int *argc, char **argv) // a context object with the current context mestro): simgrid::simix::create_maestro(maestro_code); - /* context exception handlers */ - __xbt_running_ctx_fetch = &SIMIX_process_get_running_context; - __xbt_ex_terminate = &SIMIX_process_exception_terminate; - /* Prepare to display some more info when dying on Ctrl-C pressing */ signal(SIGINT, inthandler); @@ -268,6 +264,18 @@ int smx_cleaned = 0; void SIMIX_clean(void) { if (smx_cleaned) return; // to avoid double cleaning by java and C + +#if HAVE_SMPI + if (SIMIX_process_count()>0){ + if(smpi_process_initialized()){ + xbt_die("Process exited without calling MPI_Finalize - Killing simulation"); + }else{ + XBT_WARN("Process called exit when leaving - Skipping cleanups"); + return; + } + } +#endif + smx_cleaned = 1; XBT_DEBUG("SIMIX_clean called. Simulation's over."); if (!xbt_dynar_is_empty(simix_global->process_to_run) && SIMIX_get_clock() == 0.0) { @@ -299,15 +307,9 @@ void SIMIX_clean(void) /* Let's free maestro now */ delete simix_global->maestro_process->context; simix_global->maestro_process->context = nullptr; - xbt_free(simix_global->maestro_process->running_ctx); - simix_global->maestro_process->running_ctx = nullptr; delete simix_global->maestro_process; simix_global->maestro_process = nullptr; - /* Restore the default exception setup */ - __xbt_running_ctx_fetch = &__xbt_ex_ctx_default; - __xbt_ex_terminate = &__xbt_ex_terminate_default; - /* Finish context module and SURF */ SIMIX_context_mod_exit();