Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[project-description] Fix extraction of the ns-3 version.
[simgrid.git] / src / kernel / actor / SimcallObserver.cpp
1 /* Copyright (c) 2019-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/kernel/actor/SimcallObserver.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/kernel/activity/CommImpl.hpp"
9 #include "src/kernel/activity/MailboxImpl.hpp"
10 #include "src/kernel/actor/ActorImpl.hpp"
11 #include "src/mc/mc_config.hpp"
12
13 #include <sstream>
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_observer, mc, "Logging specific to MC simcall observation");
16
17 namespace simgrid::kernel::actor {
18
19 void SimcallObserver::serialize(std::stringstream& stream) const
20 {
21   stream << (short)mc::Transition::Type::UNKNOWN;
22 }
23 void RandomSimcall::serialize(std::stringstream& stream) const
24 {
25   stream << (short)mc::Transition::Type::RANDOM << ' ';
26   stream << min_ << ' ' << max_;
27 }
28
29 void RandomSimcall::prepare(int times_considered)
30 {
31   next_value_ = min_ + times_considered;
32   XBT_DEBUG("MC_RANDOM(%d, %d) will return %d after %d times", min_, max_, next_value_, times_considered);
33 }
34
35 int RandomSimcall::get_max_consider()
36 {
37   return max_ - min_ + 1;
38 }
39
40 bool ConditionWaitSimcall::is_enabled()
41 {
42   if (static bool warned = false; not warned) {
43     XBT_INFO("Using condition variables in model-checked code is still experimental. Use at your own risk");
44     warned = true;
45   }
46   return true;
47 }
48 } // namespace simgrid::kernel::actor