Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
91d8825988ad209c4bff8eb3cc863ee2d47e5772
[simgrid.git] / src / mc / mc_object_info.h
1 /* Copyright (c) 2007-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_MC_OBJECT_INFO_H
8 #define SIMGRID_MC_OBJECT_INFO_H
9
10 #include <vector>
11 #include <memory>
12
13 #include <xbt/base.h>
14
15 #include "mc_forward.hpp"
16 #include "src/xbt/memory_map.hpp"
17
18 XBT_PRIVATE std::shared_ptr<simgrid::mc::ObjectInformation> MC_find_object_info(
19   std::vector<simgrid::xbt::VmMap> const& maps, const char* name);
20 XBT_PRIVATE  void MC_post_process_object_info(simgrid::mc::Process* process, simgrid::mc::ObjectInformation* info);
21
22 #endif