Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Introduce a Mailbox::get_async() with no payload parameter
[simgrid.git] / examples / python / activityset-waitallfor / activityset-waitallfor.py
index 4f28809..44b3c6f 100644 (file)
@@ -16,7 +16,7 @@ def bob():
 
   this_actor.info("Create my asynchronous activities")
   exec = this_actor.exec_async(5e9)
-  comm, payload = mbox.get_async()
+  comm = mbox.get_async()
   io   = disk.read_async(300000000)
 
   pending_activities = ActivitySet([exec, comm])