X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8bcc1dbe28f658ea786ba234a679601edd30758a..2b99a23b58af6f52e1828cefeb8c6a3610b85279:/src/mc/ObjectInformation.hpp diff --git a/src/mc/ObjectInformation.hpp b/src/mc/ObjectInformation.hpp index d589dacd7c..ac1fd1b2df 100644 --- a/src/mc/ObjectInformation.hpp +++ b/src/mc/ObjectInformation.hpp @@ -13,11 +13,11 @@ #include -#include "mc/mc_forward.h" -#include "mc/Type.hpp" -#include "mc/Frame.hpp" +#include "src/mc/mc_forward.h" +#include "src/mc/Type.hpp" +#include "src/mc/Frame.hpp" -#include "smpi/private.h" +#include "src/smpi/private.h" namespace simgrid { namespace mc { @@ -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); }; + + } }