X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/047872771f0685df5ad0db3422b3333e26696330..50ddfe2f5b5035e0ed9556b334d6977ee81ff83a:/src/xbt/xbt_main.cpp diff --git a/src/xbt/xbt_main.cpp b/src/xbt/xbt_main.cpp index 61d8a93f71..5cb3298475 100644 --- a/src/xbt/xbt_main.cpp +++ b/src/xbt/xbt_main.cpp @@ -7,22 +7,19 @@ #define XBT_LOG_LOCALLY_DEFINE_XBT_CHANNEL /* MSVC don't want it to be declared extern in headers and local here */ -#include "simgrid_config.h" -#include "xbt/config.h" +#include "simgrid/config.h" +#include "simgrid/sg_config.hpp" +#include "src/internal_config.h" +#include "src/xbt_modinter.h" /* prototype of other module's init/exit in XBT */ +#include "xbt/config.hpp" #include "xbt/dynar.h" #include "xbt/log.h" #include "xbt/log.hpp" #include "xbt/misc.h" +#include "xbt/module.h" /* this module */ #include "xbt/sysdep.h" -#include - -#include "xbt/module.h" /* this module */ - -#include "src/xbt_modinter.h" /* prototype of other module's init/exit in XBT */ -#include "simgrid/sg_config.hpp" - -#include "src/internal_config.h" +#include #include #ifdef _WIN32 # include /* To silence MSVC on abort() */ @@ -39,7 +36,7 @@ char *xbt_binary_name = NULL; /* Name of the system process containing us (man xbt_dynar_t xbt_cmdline = NULL; /* all we got in argv */ int xbt_initialized = 0; -int _sg_do_clean_atexit = 1; +bool _sg_do_clean_atexit = true; int xbt_pagesize; int xbt_pagebits = 0; @@ -122,7 +119,7 @@ static void xbt_postexit() /** @brief Initialize the xbt mechanisms. */ void xbt_init(int *argc, char **argv) { - simgrid::xbt::installExceptionHandler(); + simgrid::xbt::install_exception_handler(); xbt_initialized++; if (xbt_initialized > 1) {