X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3050110154ddbefe032e5a6ebdf48701385cc88d..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/teshsuite/s4u/pid/pid.cpp diff --git a/teshsuite/s4u/pid/pid.cpp b/teshsuite/s4u/pid/pid.cpp index 4891a38a6a..7c2c7c082e 100644 --- a/teshsuite/s4u/pid/pid.cpp +++ b/teshsuite/s4u/pid/pid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2021. 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. */ @@ -9,24 +9,24 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this msg example") static void sendpid() { - simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::by_name("mailbox"); - int pid = simgrid::s4u::this_actor::get_pid(); - double comm_size = 100000; - simgrid::s4u::this_actor::on_exit([pid](int, void*) { XBT_INFO("Process \"%d\" killed.", pid); }, nullptr); + simgrid::s4u::Mailbox* mailbox = simgrid::s4u::Mailbox::by_name("mailbox"); + aid_t pid = simgrid::s4u::this_actor::get_pid(); + long comm_size = 100000; + simgrid::s4u::this_actor::on_exit([pid](bool /*failed*/) { XBT_INFO("Process \"%ld\" killed.", pid); }); - XBT_INFO("Sending pid of \"%d\".", pid); + XBT_INFO("Sending pid of \"%ld\".", pid); mailbox->put(&pid, comm_size); - XBT_INFO("Send of pid \"%d\" done.", pid); + XBT_INFO("Send of pid \"%ld\" done.", pid); simgrid::s4u::this_actor::suspend(); } static void killall() { - simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::by_name("mailbox"); + simgrid::s4u::Mailbox* mailbox = simgrid::s4u::Mailbox::by_name("mailbox"); for (int i = 0; i < 3; i++) { - int* pid = static_cast(mailbox->get()); - XBT_INFO("Killing process \"%d\".", *pid); + const auto* pid = mailbox->get(); + XBT_INFO("Killing process \"%ld\".", *pid); simgrid::s4u::Actor::by_pid(*pid)->kill(); } }