X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3203ed1f4fb6f4617e94d5351661ba07e8b8f833..fea2606dff029fec63088d8e3d9f42925a67efea:/src/mc/ObjectInformation.hpp diff --git a/src/mc/ObjectInformation.hpp b/src/mc/ObjectInformation.hpp index 2b257623db..ac1fd1b2df 100644 --- a/src/mc/ObjectInformation.hpp +++ b/src/mc/ObjectInformation.hpp @@ -88,22 +88,17 @@ public: return this->flags & simgrid::mc::ObjectInformation::Executable; } - bool privatized() const - { -#ifdef HAVE_SMPI - return this->executable() && smpi_privatize_global_variables; -#else - return false; -#endif - } - 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); }; + + } }