Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move check from checker side to app. side.
[simgrid.git] / src / mc / mc_base.cpp
index 344752bb67f5ea87243d966d5f179dbe7c0cf3a4..f6f98ced43ad0d347294f70d2989687735a30ce3 100644 (file)
@@ -169,8 +169,7 @@ bool request_is_visible(const s_smx_simcall* req)
   using simix::Simcall;
   return req->call_ == Simcall::COMM_ISEND || req->call_ == Simcall::COMM_IRECV || req->call_ == Simcall::COMM_WAIT ||
          req->call_ == Simcall::COMM_WAITANY || req->call_ == Simcall::COMM_TEST ||
-         req->call_ == Simcall::COMM_TESTANY || req->call_ == Simcall::MUTEX_LOCK ||
-         req->call_ == Simcall::MUTEX_TRYLOCK;
+         req->call_ == Simcall::COMM_TESTANY || req->call_ == Simcall::MUTEX_LOCK;
 }
 
 }