X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5916afe8cc535a67f2dd5d233080c3f005ba5a51..d636f4a9dfd4005a73f8d9e0c393c8b3d849a2ad:/examples/python/task-io/task-io.py diff --git a/examples/python/task-io/task-io.py b/examples/python/task-io/task-io.py index b74c41169c..4db1456ded 100644 --- a/examples/python/task-io/task-io.py +++ b/examples/python/task-io/task-io.py @@ -24,7 +24,6 @@ if __name__ == '__main__': args = parse() e = Engine(sys.argv) e.load_platform(args.platform) - Task.init() # Retrieve hosts bob = e.host_by_name('bob') @@ -42,7 +41,7 @@ if __name__ == '__main__': read.add_successor(exec2) # Add a function to be called when tasks end for log purpose - Task.on_end_cb(callback) + Task.on_completion_cb(callback) # Enqueue two executions for task exec1 exec1.enqueue_execs(2)