X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..e9c35254484ca4a3f5459a3e853bee6ccdd65a58:/src/msg/msg_global.cpp diff --git a/src/msg/msg_global.cpp b/src/msg/msg_global.cpp index ede87a5098..20b55dfa29 100644 --- a/src/msg/msg_global.cpp +++ b/src/msg/msg_global.cpp @@ -14,7 +14,10 @@ XBT_LOG_NEW_CATEGORY(msg, "All MSG categories"); XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg, "Logging specific to MSG (kernel)"); -MSG_Global_t msg_global = nullptr; +bool MSG_Global_t::debug_multiple_use = false; + +MSG_Global_t* msg_global = nullptr; + static void MSG_exit(); /********************************* MSG **************************************/ @@ -29,26 +32,16 @@ void MSG_init_nocheck(int *argc, char **argv) { TRACE_global_init(); if (not msg_global) { - - msg_global = new s_MSG_Global_t(); - - msg_global->debug_multiple_use = false; - simgrid::config::bind_flag(msg_global->debug_multiple_use, "msg/debug-multiple-use", + simgrid::config::bind_flag(MSG_Global_t::debug_multiple_use, "msg/debug-multiple-use", "Print backtraces of both processes when there is a conflict of multiple use of a task"); SIMIX_global_init(argc, argv); + msg_global = new MSG_Global_t(); + msg_global->sent_msg = 0; msg_global->task_copy_callback = nullptr; msg_global->process_data_cleanup = nullptr; - - simgrid::s4u::Actor::on_destruction.connect([](simgrid::s4u::ActorPtr actor) { - // free the data if a function was provided - void* userdata = actor->get_impl()->get_user_data(); - if (userdata && msg_global->process_data_cleanup) { - msg_global->process_data_cleanup(userdata); - } - }); } if(MC_is_active()){ @@ -56,7 +49,7 @@ void MSG_init_nocheck(int *argc, char **argv) { MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg)); } - if (simgrid::config::get_value("clean-atexit")) + if (simgrid::config::get_value("debug/clean-atexit")) atexit(MSG_exit); }