Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Useless test; TODO--.
[simgrid.git] / src / mc / mc_private.hpp
1 /* Copyright (c) 2007-2021. 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 XBT_PRIVATE void MC_show_deadlock();
22
23 /********************************** Miscellaneous **********************************/
24 namespace simgrid {
25 namespace mc {
26
27 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
28                                      simgrid::mc::ObjectInformation* result);
29
30 XBT_PRIVATE
31 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2);
32
33 // Move is somewhere else (in the LivenessChecker class, in the Session class?):
34 extern XBT_PRIVATE xbt_automaton_t property_automaton;
35 }
36 }
37
38 #endif