X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/515cd2622ad1000f5f3ba58ecfaf488ac922b963..5ff67b17195840c076b8b2ee0f79f2b6fadda362:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index b564b1caa3..d4d513e51d 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -96,9 +96,9 @@ static const simgrid::mc::Variable* test_global_variable(const simgrid::mc::Remo return variable; } -static simgrid::mc::Member* find_member(simgrid::mc::Type& type, const char* name) +static const simgrid::mc::Member* find_member(const simgrid::mc::Type& type, const char* name) { - for (simgrid::mc::Member& member : type.members) + for (const simgrid::mc::Member& member : type.members) if(member.name == name) return &member; return nullptr; @@ -120,10 +120,9 @@ int main(int argc, char** argv) simgrid::s4u::Engine::get_instance(&argc, argv); const simgrid::mc::Variable* var; - simgrid::mc::Type* type; + const simgrid::mc::Type* type; - simgrid::mc::RemoteProcessMemory process(getpid()); - process.init(nullptr); + simgrid::mc::RemoteProcessMemory process(getpid(), nullptr); test_global_variable(process, process.binary_info.get(), "some_local_variable", &some_local_variable, sizeof(int));