X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7207080bb744f50a6d8c418f25d82ad69e9b4f44..84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6:/src/xbt/xbt_main.cpp diff --git a/src/xbt/xbt_main.cpp b/src/xbt/xbt_main.cpp index d60ccb09de..324c2bf6c5 100644 --- a/src/xbt/xbt_main.cpp +++ b/src/xbt/xbt_main.cpp @@ -1,6 +1,6 @@ /* module handling */ -/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -28,13 +28,19 @@ #if HAVE_UNISTD_H # include #endif +#include +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling"); XBT_LOG_NEW_CATEGORY(smpi, "All SMPI categories"); /* lives here even if that's a bit odd to solve linking issues: this is used in xbt_log_file_appender to detect whether SMPI is used (and thus whether we should unbench the writing to disk) */ -char *xbt_binary_name = NULL; /* Name of the system process containing us (mandatory to retrieve neat backtraces) */ -xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */ +namespace simgrid { +namespace xbt { +std::string binary_name; /* Name of the system process containing us (mandatory to retrieve neat backtraces) */ +std::vector cmdline; /* all we got in argv */ +} // namespace xbt +} // namespace simgrid int xbt_initialized = 0; simgrid::config::Flag cfg_dbg_clean_atexit{ @@ -57,19 +63,16 @@ static void xbt_postexit(); #ifndef __GNUC__ /* Should not be necessary but for some reason, DllMain is called twice at attachment and at detachment.*/ -static int xbt_dll_process_is_attached = 0; - /* see also http://msdn.microsoft.com/en-us/library/ms682583%28VS.85%29.aspx */ /* and http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx */ static BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { - if (fdwReason == DLL_PROCESS_ATTACH - && xbt_dll_process_is_attached == 0) { - xbt_dll_process_is_attached = 1; + static bool xbt_dll_process_is_attached = false; + if (fdwReason == DLL_PROCESS_ATTACH && not xbt_dll_process_is_attached) { + xbt_dll_process_is_attached = true; xbt_preinit(); - } else if (fdwReason == DLL_PROCESS_DETACH - && xbt_dll_process_is_attached == 1) { - xbt_dll_process_is_attached = 0; + } else if (fdwReason == DLL_PROCESS_DETACH && xbt_dll_process_is_attached) { + xbt_dll_process_is_attached = false; } return 1; } @@ -106,7 +109,6 @@ static void xbt_postexit() return; xbt_initialized--; xbt_dict_postexit(); - xbt_dynar_free(&xbt_cmdline); xbt_log_postexit(); #if SIMGRID_HAVE_MC mmalloc_postexit(); @@ -116,18 +118,17 @@ static void xbt_postexit() /** @brief Initialize the xbt mechanisms. */ void xbt_init(int *argc, char **argv) { - simgrid::xbt::install_exception_handler(); - xbt_initialized++; if (xbt_initialized > 1) { XBT_DEBUG("XBT has been initialized %d times.", xbt_initialized); return; } - xbt_binary_name = argv[0]; - xbt_cmdline = xbt_dynar_new(sizeof(char*), NULL); + simgrid::xbt::install_exception_handler(); + + simgrid::xbt::binary_name = argv[0]; for (int i = 0; i < *argc; i++) - xbt_dynar_push(xbt_cmdline,&(argv[i])); + simgrid::xbt::cmdline.push_back(argv[i]); xbt_log_init(argc, argv); }