Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill "FIXME" comment.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 22 Mar 2021 19:46:33 +0000 (20:46 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 23 Mar 2021 10:56:04 +0000 (11:56 +0100)
src/kernel/activity/ConditionVariableImpl.cpp

index 8b5d784..6f95c23 100644 (file)
@@ -39,7 +39,6 @@ void ConditionVariableImpl::signal()
 
     /* Now transform the cond wait simcall into a mutex lock one */
     smx_simcall_t simcall = &proc.simcall_;
-    // FIXME? using here the MC observer to solve a problem not related to MC
     const auto* observer = dynamic_cast<mc::ConditionWaitSimcall*>(simcall->observer_);
     xbt_assert(observer != nullptr);
     observer->get_mutex()->lock(simcall->issuer_);