X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/921453365eae0f6cd258bdd70cef68ad2b6865c1..7c4bef6efee6ba4a06f99e78ea1198d74dc520fc:/src/simix/ActorImpl.cpp diff --git a/src/simix/ActorImpl.cpp b/src/simix/ActorImpl.cpp index 9cc63bbe7c..afdedc1bc5 100644 --- a/src/simix/ActorImpl.cpp +++ b/src/simix/ActorImpl.cpp @@ -31,7 +31,7 @@ #include "src/surf/surf_interface.hpp" #ifdef HAVE_SMPI -#include "src/smpi/private.h" +#include "src/smpi/include/private.hpp" #endif XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_process, simix, "Logging specific to SIMIX (process)"); @@ -191,7 +191,7 @@ ActorImpl* ActorImpl::restart(ActorImpl* issuer) if (arg.kill_time >= 0) simcall_process_set_kill_time(actor, arg.kill_time); if (arg.auto_restart) - simcall_process_auto_restart_set(actor, arg.auto_restart); + actor->auto_restart = arg.auto_restart; return actor; }