X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/813e836067a1aa922c5fb1432300b7e6390ee352..ea74f5d95928a521a588737e81f1de94eef25d19:/docs/source/tuto_s4u/master-workers-lab4.cpp diff --git a/docs/source/tuto_s4u/master-workers-lab4.cpp b/docs/source/tuto_s4u/master-workers-lab4.cpp index 7752e31f2e..3cc8ff2657 100644 --- a/docs/source/tuto_s4u/master-workers-lab4.cpp +++ b/docs/source/tuto_s4u/master-workers-lab4.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -56,7 +56,7 @@ static void master(std::vector args) } int task_id = 0; - while (e->get_clock() < simulation_duration) { /* For each task: */ + while (simgrid::s4u::Engine::get_clock() < simulation_duration) { /* For each task: */ /* - Select a worker in a round-robin way */ aid_t worker_pid = actors.at(task_id % actors.size())->get_pid(); std::string mailbox_name = std::string("worker-") + std::to_string(worker_pid);