Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix a doc error about actors (Tutorial_algorithms)
[simgrid.git] / src / mc / mc_private.hpp
1 /* Copyright (c) 2007-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 #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 namespace simgrid {
16 namespace mc {
17
18 struct DerefAndCompareByActorsCountAndUsedHeap {
19   template <class X, class Y> bool operator()(X const& a, Y const& b)
20   {
21     return std::make_pair(a->actors_count, a->heap_bytes_used) < std::make_pair(b->actors_count, b->heap_bytes_used);
22   }
23 };
24 }
25 }
26
27 /********************************* MC Global **********************************/
28
29 XBT_PRIVATE void MC_init_dot_output();
30
31 XBT_PRIVATE extern FILE* dot_output;
32
33 XBT_PRIVATE void MC_show_deadlock(void);
34
35 /********************************** Miscellaneous **********************************/
36 namespace simgrid {
37 namespace mc {
38
39 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
40                                      simgrid::mc::ObjectInformation* result);
41
42 XBT_PRIVATE
43 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2);
44
45 // Move is somewhere else (in the LivenessChecker class, in the Session class?):
46 extern XBT_PRIVATE xbt_automaton_t property_automaton;
47 }
48 }
49
50 #endif