X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1e6b0a52bef29bab9fd6754500c4e67206b07e7c..6a6209ae617ba25152ddd80cd3b79d72748d7bd5:/src/mc/mc_state.c diff --git a/src/mc/mc_state.c b/src/mc/mc_state.c index c1808d1a02..4d41ba1797 100644 --- a/src/mc/mc_state.c +++ b/src/mc/mc_state.c @@ -41,6 +41,8 @@ mc_state_t MC_state_pair_new(void) */ void MC_state_delete(mc_state_t state) { + if(state->system_state) + MC_free_snapshot(state->system_state); xbt_free(state->proc_status); xbt_free(state); } @@ -86,7 +88,7 @@ void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int valu state->internal_req.call = SIMCALL_COMM_WAIT; state->internal_req.issuer = req->issuer; state->internal_comm = *xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value, smx_action_t); - simcall_comm_wait__set__comm(&state->internal_req, xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value, smx_action_t)); + simcall_comm_wait__set__comm(&state->internal_req, &state->internal_comm); simcall_comm_wait__set__timeout(&state->internal_req, 0); break; @@ -97,22 +99,22 @@ void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int valu if(value > 0) state->internal_comm = *xbt_dynar_get_as(simcall_comm_testany__get__comms(req), value, smx_action_t); - simcall_comm_test__set__comm(&state->internal_req, xbt_dynar_get_as(simcall_comm_testany__get__comms(req), value, smx_action_t)); + simcall_comm_test__set__comm(&state->internal_req, &state->internal_comm); simcall_comm_test__set__result(&state->internal_req, value); break; case SIMCALL_COMM_WAIT: state->internal_req = *req; state->internal_comm = *(simcall_comm_wait__get__comm(req)); - simcall_comm_wait__set__comm(&state->executed_req, simcall_comm_wait__get__comm(req)); - simcall_comm_wait__set__comm(&state->internal_req, simcall_comm_wait__get__comm(req)); + simcall_comm_wait__set__comm(&state->executed_req, &state->internal_comm); + simcall_comm_wait__set__comm(&state->internal_req, &state->internal_comm); break; case SIMCALL_COMM_TEST: state->internal_req = *req; state->internal_comm = *simcall_comm_test__get__comm(req); - simcall_comm_test__set__comm(&state->executed_req, simcall_comm_test__get__comm(req)); - simcall_comm_test__set__comm(&state->internal_req, simcall_comm_test__get__comm(req)); + simcall_comm_test__set__comm(&state->executed_req, &state->internal_comm); + simcall_comm_test__set__comm(&state->internal_req, &state->internal_comm); break; default: