1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/* Copyright (c) 2013-2025. 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. */
/******************** Non-deterministic message ordering *********************/
/* This example implements one actor which receives messages from two other */
/* actors. There is no bug on it, it is just provided to test the soundness */
/* of the state space reduction with DPOR, if the maximum depth (defined with */
/* --cfg=model-check/max-depth:) is reached. */
/******************************************************************************/
#include <simgrid/modelchecker.h>
#include <simgrid/s4u.hpp>
XBT_LOG_NEW_DEFAULT_CATEGORY(electric_fence, "Example to check the soundness of DPOR");
namespace sg4 = simgrid::s4u;
static void server()
{
int* data1 = nullptr;
int* data2 = nullptr;
sg4::CommPtr comm_received1 = sg4::Mailbox::by_name("mymailbox")->get_async<int>(&data1);
sg4::CommPtr comm_received2 = sg4::Mailbox::by_name("mymailbox")->get_async<int>(&data2);
comm_received1->wait();
comm_received2->wait();
XBT_INFO("OK");
delete data1;
delete data2;
}
static void client(int id)
{
auto* payload = new int(id);
sg4::Mailbox::by_name("mymailbox")->put(payload, 10000);
XBT_INFO("Sent!");
}
int main(int argc, char* argv[])
{
sg4::Engine e(&argc, argv);
e.load_platform(argv[1]);
e.add_actor("server", e.host_by_name("HostA"), server);
e.add_actor("client", e.host_by_name("HostB"), client, 1);
e.add_actor("client", e.host_by_name("HostC"), client, 2);
e.run();
return 0;
}
|