Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
20b55dfa299aee277fb40cd6a6920fdaa93f2077
[simgrid.git] / src / msg / msg_global.cpp
1 /* Copyright (c) 2004-2019. 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 "mc/mc.h"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9 #include "src/instr/instr_private.hpp"
10 #include "src/msg/msg_private.hpp"
11 #include "src/simix/smx_private.hpp"
12 #include <xbt/config.hpp>
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 bool MSG_Global_t::debug_multiple_use = false;
18
19 MSG_Global_t* msg_global = nullptr;
20
21 static void MSG_exit();
22
23 /********************************* MSG **************************************/
24
25 /**
26  * @ingroup msg_simulation
27  * @brief Initialize MSG with less verifications
28  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
29  */
30 void MSG_init_nocheck(int *argc, char **argv) {
31
32   TRACE_global_init();
33
34   if (not msg_global) {
35     simgrid::config::bind_flag(MSG_Global_t::debug_multiple_use, "msg/debug-multiple-use",
36                                "Print backtraces of both processes when there is a conflict of multiple use of a task");
37
38     SIMIX_global_init(argc, argv);
39
40     msg_global = new MSG_Global_t();
41
42     msg_global->sent_msg = 0;
43     msg_global->task_copy_callback = nullptr;
44     msg_global->process_data_cleanup = nullptr;
45   }
46
47   if(MC_is_active()){
48     /* Ignore total amount of messages sent during the simulation for heap comparison */
49     MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
50   }
51
52   if (simgrid::config::get_value<bool>("debug/clean-atexit"))
53     atexit(MSG_exit);
54 }
55
56 void MSG_config(const char *key, const char *value){
57   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
58   simgrid::config::set_as_string(key, value);
59 }
60
61 static void MSG_exit() {
62   delete msg_global;
63   msg_global = nullptr;
64 }
65
66 unsigned long int MSG_get_sent_msg()
67 {
68   return msg_global->sent_msg;
69 }
70
71 /** @brief register functions bypassing the parser */
72 void MSG_set_function(const char* host_id, const char* function_name, xbt_dynar_t arguments)
73 {
74   SIMIX_process_set_function(host_id, function_name, arguments, -1, -1);
75 }