X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b83ad9c88af4715987015ddc91ac93ad749df428..f7623851a023484d8ba1d5c26134ee7850bac134:/src/msg/msg_global.cpp diff --git a/src/msg/msg_global.cpp b/src/msg/msg_global.cpp index a75e536279..7c2e367bf1 100644 --- a/src/msg/msg_global.cpp +++ b/src/msg/msg_global.cpp @@ -9,7 +9,6 @@ #include "instr/instr_interface.h" #include "mc/mc.h" #include "src/msg/msg_private.h" -#include "src/mc/mc_ignore.h" XBT_LOG_NEW_CATEGORY(msg, "All MSG categories"); XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg, "Logging specific to MSG (kernel)"); @@ -36,7 +35,7 @@ void MSG_init_nocheck(int *argc, char **argv) { TRACE_global_init(argc, argv); xbt_getpid = &MSG_process_self_PID; - if (!msg_global) { + if (not msg_global) { msg_global = new s_MSG_Global_t(); @@ -52,8 +51,6 @@ void MSG_init_nocheck(int *argc, char **argv) { SIMIX_function_register_process_create(MSG_process_create_from_SIMIX); SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX); - simgrid::s4u::onPlatformCreated.connect(MSG_post_create_environment); - simgrid::MsgHostExt::EXTENSION_ID = simgrid::s4u::Host::extension_create(); simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) { host.extension_set(new simgrid::MsgHostExt()); @@ -65,9 +62,7 @@ void MSG_init_nocheck(int *argc, char **argv) { MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg)); } - XBT_DEBUG("ADD MSG LEVELS"); - MSG_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, (void_f_pvoid_t) __MSG_storage_destroy); - if(xbt_cfg_get_boolean("clean-atexit")) + if (xbt_cfg_get_boolean("clean-atexit")) atexit(MSG_exit); }