X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1939afadc8cb4e240e487006a547b4cb86a9509e..eca09d65271990fdae84e1d7da71916740a9c50b:/src/mc/mc_request.c?ds=sidebyside diff --git a/src/mc/mc_request.c b/src/mc/mc_request.c index 3d7638c581..5c7d573392 100644 --- a/src/mc/mc_request.c +++ b/src/mc/mc_request.c @@ -335,12 +335,6 @@ char *MC_request_to_string(smx_simcall_t req, int value) args = bprintf("locked = %d, owner = %d, sleeping = %d", mutex->locked, mutex->owner != NULL ? (int)mutex->owner->pid : -1, xbt_swag_size(mutex->sleeping)); break; - case SIMCALL_MUTEX_UNLOCK: - type = xbt_strdup("Mutex UNLOCK"); - mutex = simcall_mutex_unlock__get__mutex(req); - args = bprintf("locked = %d, owner = %d, sleeping = %d", mutex->locked, mutex->owner != NULL ? (int)mutex->owner->pid : -1, xbt_swag_size(mutex->sleeping)); - break; - case SIMCALL_MC_SNAPSHOT: type = xbt_strdup("MC_SNAPSHOT"); args = NULL; @@ -533,10 +527,6 @@ char *MC_request_get_dot_output(smx_simcall_t req, int value) case SIMCALL_MUTEX_LOCK: label = bprintf("[(%lu)] Mutex LOCK", req->issuer->pid); break; - - case SIMCALL_MUTEX_UNLOCK: - label = bprintf("[(%lu)] Mutex UNLOCK", req->issuer->pid); - break; case SIMCALL_MC_RANDOM: if (req->issuer->smx_host)