X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea74f5d95928a521a588737e81f1de94eef25d19..4493661dc7abfbb53a26fab6bacba9d15adb861d:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index 06332d9a97..39aec321f7 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,10 +7,10 @@ #undef NDEBUG #endif -#include #include -#include "mc/datatypes.h" +#include "src/mc/datatypes.h" +#include "src/mc/mc.h" #include "src/mc/mc_private.hpp" #include "src/mc/inspect/ObjectInformation.hpp" @@ -38,9 +38,9 @@ some_struct test_some_struct; static simgrid::mc::Frame* find_function_by_name( simgrid::mc::ObjectInformation* info, const char* name) { - for (auto& entry : info->subprograms) - if(entry.second.name == name) - return &entry.second; + for (auto& [_, entry] : info->subprograms) + if (entry.name == name) + return &entry; return nullptr; } @@ -123,7 +123,7 @@ int main(int argc, char** argv) simgrid::mc::Type* type; simgrid::mc::RemoteProcess process(getpid()); - process.init(nullptr, nullptr, nullptr, nullptr); + process.init(nullptr); test_global_variable(process, process.binary_info.get(), "some_local_variable", &some_local_variable, sizeof(int));