From: Martin Quinson Date: Sun, 25 Mar 2018 17:54:50 +0000 (+0200) Subject: fix MC builds X-Git-Tag: v3.20~633 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4985c83ba72d754df4abf682daafb5030bfd7ba1 fix MC builds --- diff --git a/src/mc/mc_smx.cpp b/src/mc/mc_smx.cpp index 9cc4241903..f725c877f3 100644 --- a/src/mc/mc_smx.cpp +++ b/src/mc/mc_smx.cpp @@ -47,7 +47,7 @@ static void MC_process_refresh_simix_actor_dynar(simgrid::mc::RemoteClient* proc for (unsigned int i = 0; i < dynar.used; ++i) { simgrid::mc::ActorInformation info; - info.address = simgrid::mc::RemotePtr(data[i]); + info.address = simgrid::mc::RemotePtr(data[i]); info.hostname = nullptr; process->read_bytes(&info.copy, sizeof(info.copy), remote(data[i])); target.push_back(std::move(info)); diff --git a/src/mc/remote/RemoteClient.hpp b/src/mc/remote/RemoteClient.hpp index b681e59b31..cce199addc 100644 --- a/src/mc/remote/RemoteClient.hpp +++ b/src/mc/remote/RemoteClient.hpp @@ -44,8 +44,8 @@ namespace mc { class ActorInformation { public: /** MCed address of the process */ - RemotePtr address{nullptr}; - Remote copy; + RemotePtr address{nullptr}; + Remote copy; /** Hostname (owned by `mc_modelchecker->hostnames`) */ const char* hostname = nullptr; @@ -190,7 +190,7 @@ public: std::vector& dead_actors(); /** Get a local description of a remote SIMIX actor */ - simgrid::mc::ActorInformation* resolveActorInfo(simgrid::mc::RemotePtr actor) + simgrid::mc::ActorInformation* resolveActorInfo(simgrid::mc::RemotePtr actor) { xbt_assert(mc_model_checker != nullptr); if (not actor) @@ -206,7 +206,7 @@ public: } /** Get a local copy of the SIMIX actor structure */ - simgrid::simix::ActorImpl* resolveActor(simgrid::mc::RemotePtr process) + simgrid::kernel::actor::ActorImpl* resolveActor(simgrid::mc::RemotePtr process) { simgrid::mc::ActorInformation* actor_info = this->resolveActorInfo(process); if (actor_info)