From cce8762ad47e27c76f17a02e57b6ecf8b0e4c815 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 11 Mar 2014 09:40:54 +0100 Subject: [PATCH] Check if process was suspended while it was sleeping. Closes bug #17098. --- src/simix/smx_process.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/simix/smx_process.c b/src/simix/smx_process.c index 1ef7148c37..8378a66790 100644 --- a/src/simix/smx_process.c +++ b/src/simix/smx_process.c @@ -742,7 +742,13 @@ void SIMIX_post_process_sleep(smx_action_t action) } simcall_process_sleep__set__result(simcall, state); simcall->issuer->waiting_action = NULL; - SIMIX_simcall_answer(simcall); + if (simcall->issuer->suspended) { + XBT_DEBUG("Wait! This process is suspended and can't wake up now."); + simcall->issuer->suspended = 0; + SIMIX_pre_process_suspend(simcall, simcall->issuer); + } else { + SIMIX_simcall_answer(simcall); + } } SIMIX_process_sleep_destroy(action); -- 2.20.1