X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1928b36ff7a719c88d3db6b4e685bed8f544c7da..e5b7ca2bccfd542f49b069ef8239391ecadcbc55:/src/simix/smx_global.cpp diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index e79e69bf0c..90a2f88ec1 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -5,11 +5,16 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include +#include #include /* Signal handling */ #include #include "src/internal_config.h" +#include + +#include + #include "src/surf/surf_interface.hpp" #include "src/surf/storage_interface.hpp" #include "src/surf/xml/platf.hpp" @@ -44,16 +49,16 @@ XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories"); XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix, "Logging specific to SIMIX (kernel)"); -smx_global_t simix_global = nullptr; +std::unique_ptr simix_global; static xbt_heap_t simix_timers = nullptr; /** @brief Timer datatype */ typedef struct s_smx_timer { double date = 0.0; - std::function callback; + simgrid::xbt::Task callback; s_smx_timer() {} - s_smx_timer(double date, std::function callback) + s_smx_timer(double date, simgrid::xbt::Task callback) : date(date), callback(std::move(callback)) {} } s_smx_timer_t; @@ -194,17 +199,14 @@ void SIMIX_global_init(int *argc, char **argv) #endif if (!simix_global) { - simix_global = xbt_new0(s_smx_global_t, 1); + simix_global = std::unique_ptr(new simgrid::simix::Global()); simgrid::simix::Process proc; simix_global->process_to_run = xbt_dynar_new(sizeof(smx_process_t), nullptr); simix_global->process_that_ran = xbt_dynar_new(sizeof(smx_process_t), nullptr); simix_global->process_list = xbt_swag_new(xbt_swag_offset(proc, process_hookup)); simix_global->process_to_destroy = xbt_swag_new(xbt_swag_offset(proc, destroy_hookup)); - simix_global->maestro_process = nullptr; - simix_global->registered_functions = xbt_dict_new_homogeneous(nullptr); - simix_global->create_process_function = &SIMIX_process_create; simix_global->kill_process_function = &kill_process; simix_global->cleanup_process_function = &SIMIX_process_cleanup; @@ -217,10 +219,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 +266,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) { @@ -291,7 +301,6 @@ void SIMIX_clean(void) xbt_swag_free(simix_global->process_list); simix_global->process_list = nullptr; simix_global->process_to_destroy = nullptr; - xbt_dict_free(&(simix_global->registered_functions)); xbt_os_mutex_destroy(simix_global->mutex); simix_global->mutex = nullptr; @@ -299,23 +308,15 @@ 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(); surf_exit(); - xbt_free(simix_global); simix_global = nullptr; - return; } @@ -472,13 +473,11 @@ void SIMIX_run(void) //FIXME: make the timers being real callbacks // (i.e. provide dispatchers that read and expand the args) timer = (smx_timer_t) xbt_heap_pop(simix_timers); - if (timer->callback) { - try { - timer->callback(); - } - catch(...) { - xbt_die("Exception throwed ouf of timer callback"); - } + try { + timer->callback(); + } + catch(...) { + xbt_die("Exception throwed ouf of timer callback"); } delete timer; } @@ -535,14 +534,14 @@ void SIMIX_run(void) * \param arg Parameters of the function * */ -smx_timer_t SIMIX_timer_set(double date, void (*function)(void*), void *arg) +smx_timer_t SIMIX_timer_set(double date, void (*callback)(void*), void *arg) { - smx_timer_t timer = new s_smx_timer_t(date, std::bind(function, arg)); + smx_timer_t timer = new s_smx_timer_t(date, [=](){ callback(arg); }); xbt_heap_push(simix_timers, timer, date); return timer; } -smx_timer_t SIMIX_timer_set(double date, std::function callback) +smx_timer_t SIMIX_timer_set(double date, simgrid::xbt::Task callback) { smx_timer_t timer = new s_smx_timer_t(date, std::move(callback)); xbt_heap_push(simix_timers, timer, date);