X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f7a4833f1a704ef0be1ef00f9de84ad8d5975426..e91f4e50de913c126b42d09d227eb416bb320dae:/src/mc/mc_global.cpp diff --git a/src/mc/mc_global.cpp b/src/mc/mc_global.cpp index 9d7073caa7..cf23f62827 100644 --- a/src/mc/mc_global.cpp +++ b/src/mc/mc_global.cpp @@ -118,13 +118,13 @@ namespace mc { * \param stack The stack with the transitions to execute. * \param start Start index to begin the re-execution. */ -void replay(std::list const& stack) +void replay(std::list> const& stack) { XBT_DEBUG("**** Begin Replay ****"); /* Intermediate backtracking */ if(_sg_mc_checkpoint > 0 || _sg_mc_termination || _sg_mc_visited > 0) { - simgrid::mc::State* state = stack.back(); + simgrid::mc::State* state = stack.back().get(); if (state->system_state) { simgrid::mc::restore_snapshot(state->system_state); if(_sg_mc_comms_determinism || _sg_mc_send_determinism) @@ -153,12 +153,12 @@ void replay(std::list const& stack) int count = 1; /* Traverse the stack from the state at position start and re-execute the transitions */ - for (simgrid::mc::State* state : stack) { + for (std::unique_ptr const& state : stack) { if (state == stack.back()) break; int value; - smx_simcall_t saved_req = MC_state_get_executed_request(state, &value); + smx_simcall_t saved_req = MC_state_get_executed_request(state.get(), &value); if (saved_req) { /* because we got a copy of the executed request, we have to fetch the @@ -170,7 +170,7 @@ void replay(std::list const& stack) /* Debug information */ if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) { char* req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); - XBT_DEBUG("Replay: %s (%p)", req_str, state); + XBT_DEBUG("Replay: %s (%p)", req_str, state.get()); xbt_free(req_str); }