Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #168 from simgrid/smpi_huge_pages
[simgrid.git] / src / msg / msg_global.cpp
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u/Engine.hpp"
7 #include "simgrid/s4u/Host.hpp"
8
9 #include "instr/instr_interface.h"
10 #include "mc/mc.h"
11 #include "src/msg/msg_private.h"
12 #include "src/mc/mc_ignore.h"
13
14 XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg, "Logging specific to MSG (kernel)");
16
17 SG_BEGIN_DECL()
18
19 MSG_Global_t msg_global = nullptr;
20 static void MSG_exit();
21
22 /********************************* MSG **************************************/
23
24 static void _sg_cfg_cb_msg_debug_multiple_use(const char *name)
25 {
26   msg_global->debug_multiple_use = xbt_cfg_get_boolean(name);
27 }
28
29 /**
30  * \ingroup msg_simulation
31  * \brief Initialize MSG with less verifications
32  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
33  */
34 void MSG_init_nocheck(int *argc, char **argv) {
35
36   TRACE_global_init(argc, argv);
37
38   xbt_getpid = &MSG_process_self_PID;
39   if (!msg_global) {
40
41     msg_global = new s_MSG_Global_t();
42
43     xbt_cfg_register_boolean("msg/debug-multiple-use", "no", _sg_cfg_cb_msg_debug_multiple_use,
44         "Print backtraces of both processes when there is a conflict of multiple use of a task");
45
46     SIMIX_global_init(argc, argv);
47
48     msg_global->sent_msg = 0;
49     msg_global->task_copy_callback = nullptr;
50     msg_global->process_data_cleanup = nullptr;
51
52     SIMIX_function_register_process_create(MSG_process_create_from_SIMIX);
53     SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX);
54
55     simgrid::s4u::onPlatformCreated.connect(MSG_post_create_environment);
56
57     simgrid::MsgHostExt::EXTENSION_ID = simgrid::s4u::Host::extension_create<simgrid::MsgHostExt>();
58     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
59       host.extension_set<simgrid::MsgHostExt>(new simgrid::MsgHostExt());
60     });
61   }
62
63   if(MC_is_active()){
64     /* Ignore total amount of messages sent during the simulation for heap comparison */
65     MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
66   }
67
68   XBT_DEBUG("ADD MSG LEVELS");
69   MSG_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, (void_f_pvoid_t) __MSG_storage_destroy);
70   if(xbt_cfg_get_boolean("clean-atexit"))
71     atexit(MSG_exit);
72 }
73
74 /** \ingroup msg_simulation
75  * \brief Launch the MSG simulation
76  */
77 msg_error_t MSG_main()
78 {
79   /* Clean IO before the run */
80   fflush(stdout);
81   fflush(stderr);
82
83   if (MC_is_active()) {
84     MC_run();
85   } else {
86     SIMIX_run();
87   }
88   return MSG_OK;
89 }
90
91 /** \ingroup msg_simulation
92  * \brief set a configuration variable
93  *
94  * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
95  *
96  * Example:
97  * MSG_config("host/model","ptask_L07");
98  */
99 void MSG_config(const char *key, const char *value){
100   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
101   xbt_cfg_set_as_string(key, value);
102 }
103
104 /** \ingroup msg_simulation
105  * \brief Kill all running process
106
107  * \param reset_PIDs should we reset the PID numbers. A negative
108  *   number means no reset and a positive number will be used to set the PID
109  *   of the next newly created process.
110  */
111 int MSG_process_killall(int reset_PIDs)
112 {
113   simcall_process_killall(reset_PIDs);
114
115   return 0;
116 }
117
118 static void MSG_exit() {
119   if (msg_global==nullptr)
120     return;
121
122   TRACE_surf_resource_utilization_release();
123   TRACE_end();
124   delete msg_global;
125   msg_global = nullptr;
126 }
127
128 /** \ingroup msg_simulation
129  * \brief A clock (in second).
130  */
131 double MSG_get_clock()
132 {
133   return SIMIX_get_clock();
134 }
135
136 unsigned long int MSG_get_sent_msg()
137 {
138   return msg_global->sent_msg;
139 }
140
141 SG_END_DECL()