X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f1e469ce075c0a1ad21a7fd0fdb587f9a3cb5289..a93caab924a2f8bfe4102d6442013ec12087bed0:/src/msg/msg_global.cpp diff --git a/src/msg/msg_global.cpp b/src/msg/msg_global.cpp index 1eefcc5577..2dd6fc906b 100644 --- a/src/msg/msg_global.cpp +++ b/src/msg/msg_global.cpp @@ -35,9 +35,9 @@ 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 = xbt_new0(s_MSG_Global_t, 1); + msg_global = new s_MSG_Global_t(); xbt_cfg_register_boolean("msg/debug-multiple-use", "no", _sg_cfg_cb_msg_debug_multiple_use, "Print backtraces of both processes when there is a conflict of multiple use of a task"); @@ -66,7 +66,7 @@ void MSG_init_nocheck(int *argc, char **argv) { 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); } @@ -120,7 +120,7 @@ static void MSG_exit() { TRACE_surf_resource_utilization_release(); TRACE_end(); - free(msg_global); + delete msg_global; msg_global = nullptr; }