Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace some more malloc/free.
[simgrid.git] / src / mc / mc_private.hpp
1 /* Copyright (c) 2007-2017. 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 extern "C" {
28
29 /********************************* MC Global **********************************/
30
31 XBT_PRIVATE void MC_init_dot_output();
32
33 XBT_PRIVATE extern FILE* dot_output;
34
35 XBT_PRIVATE void MC_show_deadlock(void);
36
37 /********************************** Snapshot comparison **********************************/
38
39 //#define MC_DEBUG 1
40 #define MC_VERBOSE 1
41
42 /********************************** Miscellaneous **********************************/
43 }
44
45 namespace simgrid {
46 namespace mc {
47
48 XBT_PRIVATE void find_object_address(std::vector<simgrid::xbt::VmMap> const& maps,
49                                      simgrid::mc::ObjectInformation* result);
50
51 XBT_PRIVATE
52 int snapshot_compare(int num1, simgrid::mc::Snapshot* s1, int num2, simgrid::mc::Snapshot* s2);
53
54 // Move is somewhere else (in the LivenessChecker class, in the Session class?):
55 extern XBT_PRIVATE xbt_automaton_t property_automaton;
56 }
57 }
58
59 #endif