X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3b53885f888f2539a533797e76a3f3ff84cdfe0c..dc0b6bff49507332f7978675d174aa4fa9916fc2:/src/mc/ObjectInformation.hpp diff --git a/src/mc/ObjectInformation.hpp b/src/mc/ObjectInformation.hpp index 8ada283b53..ac1fd1b2df 100644 --- a/src/mc/ObjectInformation.hpp +++ b/src/mc/ObjectInformation.hpp @@ -11,11 +11,13 @@ #include #include -#include "mc/mc_forward.h" -#include "mc/Type.hpp" -#include "mc/Frame.hpp" +#include -#include "smpi/private.h" +#include "src/mc/mc_forward.h" +#include "src/mc/Type.hpp" +#include "src/mc/Frame.hpp" + +#include "src/smpi/private.h" namespace simgrid { namespace mc { @@ -86,18 +88,17 @@ public: return this->flags & simgrid::mc::ObjectInformation::Executable; } - bool privatized() const - { - return this->executable() && smpi_privatize_global_variables; - } - void* base_address() const; 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); }; + + } }