X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..73a0ae62cf92da83e861cfaf9ba0313cacbc4825:/src/xbt/xbt_main.cpp diff --git a/src/xbt/xbt_main.cpp b/src/xbt/xbt_main.cpp index 324c2bf6c5..9443d05a42 100644 --- a/src/xbt/xbt_main.cpp +++ b/src/xbt/xbt_main.cpp @@ -1,6 +1,6 @@ /* module handling */ -/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2022. 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. */ @@ -10,7 +10,7 @@ #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 "src/sthread/sthread.h" // sthread_inside_simgrid #include "xbt/config.hpp" #include "xbt/coverage.h" #include "xbt/dynar.h" @@ -19,6 +19,7 @@ #include "xbt/misc.h" #include "xbt/module.h" /* this module */ #include "xbt/sysdep.h" +#include "xbt/xbt_modinter.h" /* prototype of other module's init/exit in XBT */ #include #include @@ -35,17 +36,15 @@ 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) */ -namespace simgrid { -namespace xbt { +namespace simgrid::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 +} // namespace simgrid::xbt + int xbt_initialized = 0; simgrid::config::Flag cfg_dbg_clean_atexit{ "debug/clean-atexit", - {"clean-atexit"}, "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.", true}; @@ -57,6 +56,8 @@ int xbt_pagebits = 0; */ static void xbt_preinit() XBT_ATTRIB_CONSTRUCTOR(200); static void xbt_postexit(); +void sthread_enable() {} // These symbols are used from ContextSwapped in any case, but they are only useful +void sthread_disable() {} // when libsthread is LD_PRELOADED. In this case, sthread's implem gets used instead. #ifdef _WIN32 #include @@ -87,12 +88,12 @@ static void xbt_preinit() GetSystemInfo(&si); xbt_pagesize = si.dwPageSize; #elif HAVE_SYSCONF - xbt_pagesize = sysconf(_SC_PAGESIZE); + xbt_pagesize = static_cast(sysconf(_SC_PAGESIZE)); #else # error Cannot get page size. #endif - xbt_pagebits = log2(xbt_pagesize); + xbt_pagebits = static_cast(log2(xbt_pagesize)); #ifdef _TWO_DIGIT_EXPONENT /* Even printf behaves differently on Windows... */ @@ -126,9 +127,10 @@ void xbt_init(int *argc, char **argv) simgrid::xbt::install_exception_handler(); - simgrid::xbt::binary_name = argv[0]; + if (*argc > 0) + simgrid::xbt::binary_name = argv[0]; for (int i = 0; i < *argc; i++) - simgrid::xbt::cmdline.push_back(argv[i]); + simgrid::xbt::cmdline.emplace_back(argv[i]); xbt_log_init(argc, argv); } @@ -159,3 +161,10 @@ void xbt_abort() #endif abort(); } + +#ifndef HAVE_SMPI +int SMPI_is_inited() +{ + return false; +} +#endif \ No newline at end of file