Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add detached isend to maestro to allow tracking in case of fault
[simgrid.git] / src / mc / mc_private.hpp
1 /* Copyright (c) 2007-2022. 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 #ifndef SIMGRID_MC_PRIVATE_HPP
7 #define SIMGRID_MC_PRIVATE_HPP
8
9 #include "mc/mc.h"
10 #include "xbt/automaton.h"
11
12 #include "src/mc/mc_forward.hpp"
13 #include "src/xbt/memory_map.hpp"
14
15 /********************************* MC Global **********************************/
16
17 XBT_PRIVATE void MC_init_dot_output();
18
19 XBT_PRIVATE extern FILE* dot_output;
20
21 /********************************** Miscellaneous **********************************/
22 namespace simgrid::mc {
23
24 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
25                                      simgrid::mc::ObjectInformation* result);
26
27 XBT_PRIVATE
28 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2);
29
30 // Move is somewhere else (in the LivenessChecker class, in the Session class?):
31 extern XBT_PRIVATE xbt_automaton_t property_automaton;
32 } // namespace simgrid::mc
33
34 #endif