X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fce872a4f145c997f146ea0d098a77549a47bd0b..9d7dca1d2de1e6d67027e4ba33fefe1eb09550e3:/src/mc/ObjectInformation.hpp diff --git a/src/mc/ObjectInformation.hpp b/src/mc/ObjectInformation.hpp index 1a59340afe..9a55d87bfc 100644 --- a/src/mc/ObjectInformation.hpp +++ b/src/mc/ObjectInformation.hpp @@ -9,11 +9,13 @@ #include #include +#include #include #include -#include "src/mc/mc_forward.h" +#include "src/xbt/memory_map.hpp" +#include "src/mc/mc_forward.hpp" #include "src/mc/Type.hpp" #include "src/mc/Frame.hpp" @@ -93,9 +95,15 @@ public: simgrid::mc::Frame* find_function(const void *ip) const; simgrid::mc::Variable* find_variable(const char* name) const; void remove_global_variable(const char* name); - + void remove_local_variable( + const char* name, const char* scope); }; +XBT_PRIVATE std::shared_ptr createObjectInformation( + std::vector const& maps, const char* name); +XBT_PRIVATE void postProcessObjectInformation( + simgrid::mc::Process* process, simgrid::mc::ObjectInformation* info); + } }