Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move libsosp into its own directory
[simgrid.git] / src / mc / mc_private.hpp
1 /* Copyright (c) 2007-2018. 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 /********************************** Snapshot comparison **********************************/
36
37 //#define MC_DEBUG 1
38 #define MC_VERBOSE 1
39
40 /********************************** Miscellaneous **********************************/
41 namespace simgrid {
42 namespace mc {
43
44 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
45                                      simgrid::mc::ObjectInformation* result);
46
47 XBT_PRIVATE
48 int snapshot_compare(int num1, simgrid::mc::Snapshot* s1, int num2, simgrid::mc::Snapshot* s2);
49
50 // Move is somewhere else (in the LivenessChecker class, in the Session class?):
51 extern XBT_PRIVATE xbt_automaton_t property_automaton;
52 }
53 }
54
55 #endif