Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
split MutexImpl into their own files
[simgrid.git] / src / simix / ActorImpl.hpp
index 03966bf..0fd300a 100644 (file)
@@ -113,6 +113,10 @@ public:
   void* getUserData() { return userdata; }
 };
 
+/* Used to keep the list of actors blocked on a synchro  */
+typedef boost::intrusive::list<ActorImpl, boost::intrusive::member_hook<ActorImpl, boost::intrusive::list_member_hook<>,
+                                                                        &ActorImpl::smx_synchro_hook>>
+    SynchroList;
 }
 }