From fa194cfd4dc1694b23d8f5c4118005fa70a92db4 Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Fri, 5 Apr 2019 17:57:14 +0200 Subject: [PATCH 1/1] simplify --- src/kernel/activity/IoImpl.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/kernel/activity/IoImpl.cpp b/src/kernel/activity/IoImpl.cpp index db99089236..b7c10da2c8 100644 --- a/src/kernel/activity/IoImpl.cpp +++ b/src/kernel/activity/IoImpl.cpp @@ -20,12 +20,8 @@ void simcall_HANDLER_io_wait(smx_simcall_t simcall, simgrid::kernel::activity::I /* Associate this simcall to the synchro */ synchro->register_simcall(simcall); - /* set surf's synchro */ - if (MC_is_active() || MC_record_replay_is_active()) { + if (MC_is_active() || MC_record_replay_is_active()) synchro->state_ = SIMIX_DONE; - synchro->finish(); - return; - } /* If the synchro is already finished then perform the error handling */ if (synchro->state_ != SIMIX_RUNNING) -- 2.20.1