Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Simplify the library initialization + deprecate 2 XBT functions
[simgrid.git] / src / xbt / xbt_main.cpp
1 /* module handling                                                          */
2
3 /* Copyright (c) 2006-2023. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #define XBT_LOG_LOCALLY_DEFINE_XBT_CHANNEL /* MSVC don't want it to be declared extern in headers and local here */
9
10 #include "simgrid/config.h"
11 #include "src/internal_config.h"
12 #include "src/simgrid/sg_config.hpp"
13 #include "src/sthread/sthread.h" // sthread_inside_simgrid
14 #include "src/xbt/coverage.h"
15 #include "src/xbt/xbt_modinter.h" /* prototype of other module's init/exit in XBT */
16 #include "xbt/config.hpp"
17 #include "xbt/dynar.h"
18 #include "xbt/log.h"
19 #include "xbt/log.hpp"
20 #include "xbt/misc.h"
21 #include "xbt/sysdep.h"
22
23 #include <cmath>
24 #include <cstdio>
25 #if HAVE_UNISTD_H
26 # include <unistd.h>
27 #endif
28 #include <string>
29 #include <vector>
30
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
32
33 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) */
34
35 namespace simgrid::xbt {
36 std::string binary_name;          /* Name of the system process containing us (mandatory to retrieve neat backtraces) */
37 std::vector<std::string> cmdline; /* all we got in argv */
38 } // namespace simgrid::xbt
39
40 const int xbt_pagesize = static_cast<int>(sysconf(_SC_PAGESIZE));
41 const int xbt_pagebits = static_cast<int>(log2(xbt_pagesize));
42
43 XBT_ATTRIB_NOINLINE void sthread_enable()
44 { // These symbols are used from ContextSwapped in any case, but they are only useful
45   asm("");
46 }
47 XBT_ATTRIB_NOINLINE void sthread_disable()
48 { //  when libsthread is LD_PRELOADED. In this case, sthread's implem gets used instead.
49   asm("");
50 }
51
52 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
53 /** @brief like xbt_free, but you can be sure that it is a function  */
54 void xbt_free_f(void* p) noexcept(noexcept(::free))
55 {
56   xbt_free(p);
57 }
58
59 /** @brief should be given a pointer to pointer, and frees the second one */
60 void xbt_free_ref(void* d) noexcept(noexcept(::free))
61 {
62   xbt_free(*(void**)d);
63 }
64
65 /** @brief Kill the program in silence */
66 void xbt_abort()
67 {
68   /* Call __gcov_flush on abort when compiling with coverage options. */
69   coverage_checkpoint();
70   abort();
71 }
72
73 #ifndef HAVE_SMPI
74 int SMPI_is_inited()
75 {
76   return false;
77 }
78 #endif