X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ade1c748396ae71562fd718e8409de61ab00148..a028e893d68df482b66d89e797c26ac0dd82c737:/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 c2c8f4d3b2..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. */ @@ -22,8 +22,9 @@ static void worker(std::string category) simgrid::s4u::Mailbox* mailbox = simgrid::s4u::Mailbox::by_name(mailbox_name); while (true) { // Master forcefully kills the workers by the end of the simulation - auto msg = mailbox->get_unique(); + double* msg = mailbox->get(); double compute_cost = *msg; + delete msg; // simgrid::s4u::this_actor::exec_init(compute_cost)->set_tracing_category(category)->wait(); /* Long form:*/ @@ -55,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);