From b5f3f6c9de51658f70ca7b371120eafccf3826cd Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Mon, 4 Jun 2018 09:02:33 +0200 Subject: [PATCH] try to avoid a false positive on sonar saying that on_exit() is deprecated --- .../s4u/actor-lifetime/s4u-actor-lifetime.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp b/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp index a9201ae8af..623173734b 100644 --- a/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp +++ b/examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp @@ -10,21 +10,20 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific for this s4u example"); -/* Executed on process termination, to display a message helping to understand the output */ -static void my_onexit(int, void*) -{ - XBT_INFO("Exiting now (done sleeping or got killed)."); -} - -/* Just sleep until termination */ +/* This actor just sleeps until termination */ class sleeper { public: explicit sleeper(std::vector /*args*/) { - XBT_INFO("Hello! I go to sleep."); - simgrid::s4u::this_actor::on_exit(my_onexit, NULL); + simgrid::s4u::this_actor::on_exit( + [](int, void*) { + /* Executed on process termination, to display a message helping to understand the output */ + XBT_INFO("Exiting now (done sleeping or got killed)."); + }, + nullptr); + XBT_INFO("Hello! I go to sleep."); simgrid::s4u::this_actor::sleep_for(10); } void operator()() { XBT_INFO("Done sleeping."); } -- 2.20.1