From 56535a019ac972e398628cc6cb7f75cad04e6c4d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christophe=20Thi=C3=A9ry?= Date: Wed, 9 Nov 2011 12:20:26 +0100 Subject: [PATCH] Also remove the comm from processes when SIMIX_post_comm is not called --- src/simix/smx_network.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/simix/smx_network.c b/src/simix/smx_network.c index 56f4086130..c3265f6950 100644 --- a/src/simix/smx_network.c +++ b/src/simix/smx_network.c @@ -668,6 +668,7 @@ void SIMIX_comm_finish(smx_action_t action) } req->issuer->waiting_action = NULL; + xbt_fifo_remove(req->issuer->comms, action); SIMIX_request_answer(req); destroy_count++; } -- 2.20.1