Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
CommDet shall become an extension of the SafetyChecker
[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 {
23 namespace mc {
24
25 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
26                                      simgrid::mc::ObjectInformation* result);
27
28 XBT_PRIVATE
29 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2);
30
31 // Move is somewhere else (in the LivenessChecker class, in the Session class?):
32 extern XBT_PRIVATE xbt_automaton_t property_automaton;
33 }
34 }
35
36 #endif