X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a9daf6dc6023e088fc54646fbe95de0bf872f2d..3cbf54871089cc3dc50b6832652b5765e1601039:/src/simix/smx_global.cpp diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index adcb65e55d..be1826fe62 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -23,7 +23,7 @@ #include "xbt/ex.h" /* ex_backtrace_display */ #include "mc/mc.h" -#include "simgrid/sg_config.h" +#include "simgrid/sg_config.hpp" #include "src/mc/mc_replay.hpp" #include "src/surf/StorageImpl.hpp" @@ -337,15 +337,15 @@ static void SIMIX_wake_processes() XBT_DEBUG("Handling the processes whose action failed (if any)"); while ((action = surf_model_extract_failed_action_set(model))) { XBT_DEBUG(" Handling Action %p",action); - SIMIX_simcall_exit(static_cast(action->getData())); + SIMIX_simcall_exit(static_cast(action->get_data())); } XBT_DEBUG("Handling the processes whose action terminated normally (if any)"); while ((action = surf_model_extract_done_action_set(model))) { XBT_DEBUG(" Handling Action %p",action); - if (action->getData() == nullptr) + if (action->get_data() == nullptr) XBT_DEBUG("probably vcpu's action %p, skip", action); else - SIMIX_simcall_exit(static_cast(action->getData())); + SIMIX_simcall_exit(static_cast(action->get_data())); } } }