Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fortran : avoid removing groups and communicators from the lookup table if they are...
[simgrid.git] / src / kernel / actor / ActorImpl.cpp
1 /* Copyright (c) 2007-2019. 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 "mc/mc.h"
7 #include "simgrid/Exception.hpp"
8 #include "simgrid/s4u/Actor.hpp"
9 #include "simgrid/s4u/Exec.hpp"
10 #include "src/kernel/activity/CommImpl.hpp"
11 #include "src/kernel/activity/ExecImpl.hpp"
12 #include "src/kernel/activity/IoImpl.hpp"
13 #include "src/kernel/activity/SleepImpl.hpp"
14 #include "src/kernel/activity/SynchroRaw.hpp"
15 #include "src/mc/mc_replay.hpp"
16 #include "src/mc/remote/Client.hpp"
17 #include "src/simix/smx_private.hpp"
18 #include "src/surf/HostImpl.hpp"
19 #include "src/surf/cpu_interface.hpp"
20
21 #include <boost/range/algorithm.hpp>
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_process, simix, "Logging specific to SIMIX (process)");
24
25 static unsigned long simix_process_maxpid = 0;
26
27 /**
28  * @brief Returns the current agent.
29  *
30  * This functions returns the currently running SIMIX process.
31  *
32  * @return The SIMIX process
33  */
34 smx_actor_t SIMIX_process_self()
35 {
36   simgrid::kernel::context::Context* self_context = simgrid::kernel::context::Context::self();
37
38   return (self_context != nullptr) ? self_context->get_actor() : nullptr;
39 }
40
41 /**
42  * @brief Returns whether a process has pending asynchronous communications.
43  * @return true if there are asynchronous communications in this process
44  * @deprecated
45  */
46 int SIMIX_process_has_pending_comms(smx_actor_t process)
47 {
48
49   return process->comms.size() > 0;
50 }
51
52 namespace simgrid {
53 namespace kernel {
54 namespace actor {
55
56 ActorImpl::ActorImpl(const simgrid::xbt::string& name, s4u::Host* host) : host_(host), name_(name), piface_(this)
57 {
58   pid_           = simix_process_maxpid++;
59   simcall.issuer = this;
60 }
61
62 ActorImpl::~ActorImpl() = default;
63
64 /* Become an actor in the simulation
65  *
66  * Currently this can only be called by the main thread (once) and only work with some thread factories
67  * (currently ThreadContextFactory).
68  *
69  * In the future, it might be extended in order to attach other threads created by a third party library.
70  */
71
72 ActorImplPtr ActorImpl::attach(const std::string& name, void* data, s4u::Host* host,
73                                std::unordered_map<std::string, std::string>* properties)
74 {
75   // This is mostly a copy/paste from create(), it'd be nice to share some code between those two functions.
76
77   XBT_DEBUG("Attach process %s on host '%s'", name.c_str(), host->get_cname());
78
79   if (not host->is_on()) {
80     XBT_WARN("Cannot launch process '%s' on failed host '%s'", name.c_str(), host->get_cname());
81     std::rethrow_exception(
82         std::make_exception_ptr(simgrid::HostFailureException(XBT_THROW_POINT, "Cannot attach actor on failed host.")));
83   }
84
85   ActorImpl* actor = new ActorImpl(xbt::string(name), host);
86   /* Actor data */
87   actor->set_user_data(data);
88   actor->code = nullptr;
89
90   XBT_VERB("Create context %s", actor->get_cname());
91   xbt_assert(simix_global != nullptr, "simix is not initialized, please call MSG_init first");
92   actor->context_.reset(simix_global->context_factory->attach(actor));
93
94   /* Add properties */
95   if (properties != nullptr)
96     for (auto const& kv : *properties)
97       actor->set_property(kv.first, kv.second);
98
99   /* Add the process to it's host process list */
100   host->pimpl_->process_list_.push_back(*actor);
101
102   /* Now insert it in the global process list and in the process to run list */
103   simix_global->process_list[actor->get_pid()] = actor;
104   XBT_DEBUG("Inserting [%p] %s(%s) in the to_run list", actor, actor->get_cname(), host->get_cname());
105   simix_global->actors_to_run.push_back(actor);
106   intrusive_ptr_add_ref(actor);
107
108   auto* context = dynamic_cast<simgrid::kernel::context::AttachContext*>(actor->context_.get());
109   xbt_assert(nullptr != context, "Not a suitable context");
110   context->attach_start();
111
112   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
113   simgrid::s4u::Actor::on_creation(*actor->ciface());
114
115   return ActorImplPtr(actor);
116 }
117 /** @brief Detach an actor attached with `attach()`
118  *
119  *  This is called when the current actor has finished its job.
120  *  Used in the main thread, it waits for the simulation to finish before returning. When it returns, the other
121  *  simulated actors and the maestro are destroyed.
122  */
123 void ActorImpl::detach()
124 {
125   auto* context = dynamic_cast<context::AttachContext*>(context::Context::self());
126   if (context == nullptr)
127     xbt_die("Not a suitable context");
128
129   context->get_actor()->cleanup();
130   context->attach_stop();
131 }
132
133 void ActorImpl::cleanup()
134 {
135   finished_ = true;
136
137   if (has_to_auto_restart() && not get_host()->is_on()) {
138     XBT_DEBUG("Insert host %s to watched_hosts because it's off and %s needs to restart", get_host()->get_cname(),
139               get_cname());
140     watched_hosts.insert(get_host()->get_name());
141   }
142
143   // Execute the termination callbacks
144   bool failed = context_->iwannadie;
145   while (not on_exit.empty()) {
146     auto exit_fun = on_exit.back();
147     on_exit.pop_back();
148     exit_fun(failed);
149   }
150
151   /* cancel non-blocking activities */
152   for (auto activity : comms)
153     boost::static_pointer_cast<activity::CommImpl>(activity)->cancel();
154   comms.clear();
155
156   XBT_DEBUG("%s@%s(%ld) should not run anymore", get_cname(), get_host()->get_cname(), get_pid());
157
158   if (this == simix_global->maestro_process) /* Do not cleanup maestro */
159     return;
160
161   XBT_DEBUG("Cleanup actor %s (%p), waiting synchro %p", get_cname(), this, waiting_synchro.get());
162
163   /* Unregister from the kill timer if any */
164   if (kill_timer != nullptr) {
165     kill_timer->remove();
166     kill_timer = nullptr;
167   }
168
169   simix_global->mutex.lock();
170
171   simix_global->process_list.erase(pid_);
172   if (host_ && host_process_list_hook.is_linked())
173     simgrid::xbt::intrusive_erase(host_->pimpl_->process_list_, *this);
174   if (not smx_destroy_list_hook.is_linked()) {
175 #if SIMGRID_HAVE_MC
176     xbt_dynar_push_as(simix_global->dead_actors_vector, ActorImpl*, this);
177 #endif
178     simix_global->actors_to_destroy.push_back(*this);
179   }
180
181   simix_global->mutex.unlock();
182
183   context_->iwannadie = false; // don't let the simcall's yield() do a Context::stop(), to avoid infinite loops
184   simgrid::simix::simcall([this] { simgrid::s4u::Actor::on_destruction(*ciface()); });
185   context_->iwannadie = true;
186 }
187
188 void ActorImpl::exit()
189 {
190   context_->iwannadie = true;
191   blocked_            = false;
192   suspended_          = false;
193   exception_          = nullptr;
194
195   // Forcefully kill the actor if its host is turned off. Not a HostFailureException because you should not survive that
196   if (not host_->is_on())
197     this->throw_exception(std::make_exception_ptr(ForcefulKillException("host failed")));
198
199   /* destroy the blocking synchro if any */
200   if (waiting_synchro != nullptr) {
201     waiting_synchro->cancel();
202     waiting_synchro->state_ = SIMIX_FAILED;
203
204     activity::ExecImplPtr exec   = boost::dynamic_pointer_cast<activity::ExecImpl>(waiting_synchro);
205     activity::CommImplPtr comm   = boost::dynamic_pointer_cast<activity::CommImpl>(waiting_synchro);
206
207     if (exec != nullptr) {
208       exec->clean_action();
209     } else if (comm != nullptr) {
210       comms.remove(waiting_synchro);
211       // Remove first occurrence of &actor->simcall:
212       auto i = boost::range::find(waiting_synchro->simcalls_, &simcall);
213       if (i != waiting_synchro->simcalls_.end())
214         waiting_synchro->simcalls_.remove(&simcall);
215     } else {
216       activity::ActivityImplPtr(waiting_synchro)->finish();
217     }
218
219     waiting_synchro = nullptr;
220   }
221 }
222
223 void ActorImpl::kill(ActorImpl* actor)
224 {
225   if (actor->finished_) {
226     XBT_DEBUG("Ignoring request to kill actor %s@%s that is already dead", actor->get_cname(),
227               actor->host_->get_cname());
228     return;
229   }
230
231   XBT_DEBUG("Actor '%s'@%s is killing actor '%s'@%s", get_cname(), host_ ? host_->get_cname() : "", actor->get_cname(),
232             actor->host_ ? actor->host_->get_cname() : "");
233
234   actor->exit();
235
236   if (std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), actor) ==
237           end(simix_global->actors_to_run) &&
238       actor != this) {
239     XBT_DEBUG("Inserting %s in the to_run list", actor->get_cname());
240     simix_global->actors_to_run.push_back(actor);
241   }
242 }
243
244 void ActorImpl::kill_all()
245 {
246   for (auto const& kv : simix_global->process_list)
247     if (kv.second != this)
248       this->kill(kv.second);
249 }
250
251 void ActorImpl::set_kill_time(double kill_time)
252 {
253   if (kill_time <= SIMIX_get_clock())
254     return;
255   XBT_DEBUG("Set kill time %f for actor %s@%s", kill_time, get_cname(), host_->get_cname());
256   kill_timer = simix::Timer::set(kill_time, [this] {
257     this->exit();
258     kill_timer = nullptr;
259   });
260 }
261
262 double ActorImpl::get_kill_time()
263 {
264   return kill_timer ? kill_timer->get_date() : 0;
265 }
266
267 void ActorImpl::yield()
268 {
269   XBT_DEBUG("Yield actor '%s'", get_cname());
270
271   /* Go into sleep and return control to maestro */
272   context_->suspend();
273
274   /* Ok, maestro returned control to us */
275   XBT_DEBUG("Control returned to me: '%s'", get_cname());
276
277   if (context_->iwannadie) {
278     XBT_DEBUG("Actor %s@%s is dead", get_cname(), host_->get_cname());
279     // throw simgrid::kernel::context::ForcefulKillException(); Does not seem to properly kill the actor
280     context_->stop();
281     THROW_IMPOSSIBLE;
282   }
283
284   if (suspended_) {
285     XBT_DEBUG("Hey! I'm suspended.");
286
287     xbt_assert(exception_ == nullptr, "Gasp! This exception may be lost by subsequent calls.");
288     suspended_ = false;
289     suspend(this);
290   }
291
292   if (exception_ != nullptr) {
293     XBT_DEBUG("Wait, maestro left me an exception");
294     std::exception_ptr exception = std::move(exception_);
295     exception_                   = nullptr;
296     std::rethrow_exception(std::move(exception));
297   }
298
299   if (SMPI_switch_data_segment && not finished_) {
300     SMPI_switch_data_segment(iface());
301   }
302 }
303
304 /** This actor will be terminated automatically when the last non-daemon actor finishes */
305 void ActorImpl::daemonize()
306 {
307   if (not daemon_) {
308     daemon_ = true;
309     simix_global->daemons.push_back(this);
310     SIMIX_process_on_exit(this, [this](bool) {
311       auto& vect = simix_global->daemons;
312       auto it    = std::find(vect.begin(), vect.end(), this);
313       xbt_assert(it != vect.end(), "The dying daemon is not a daemon after all. Please report that bug.");
314
315       /* Don't move the whole content since we don't really care about the order */
316       std::swap(*it, vect.back());
317       vect.pop_back();
318     });
319   }
320 }
321
322 s4u::Actor* ActorImpl::restart()
323 {
324   xbt_assert(this != simix_global->maestro_process, "Restarting maestro is not supported");
325
326   XBT_DEBUG("Restarting actor %s on %s", get_cname(), host_->get_cname());
327
328   // retrieve the arguments of the old actor
329   ProcessArg arg = ProcessArg(host_, this);
330
331   // kill the old actor
332   context::Context::self()->get_actor()->kill(this);
333
334   // start the new actor
335   ActorImplPtr actor =
336       ActorImpl::create(arg.name, std::move(arg.code), arg.data, arg.host, arg.properties.get(), nullptr);
337   actor->set_kill_time(arg.kill_time);
338   actor->set_auto_restart(arg.auto_restart);
339
340   return actor->ciface();
341 }
342
343 activity::ActivityImplPtr ActorImpl::suspend(ActorImpl* issuer)
344 {
345   if (suspended_) {
346     XBT_DEBUG("Actor '%s' is already suspended", get_cname());
347     return nullptr;
348   }
349
350   suspended_ = true;
351
352   /* If we are suspending another actor that is waiting on a sync, suspend its synchronization. */
353   if (this != issuer) {
354     if (waiting_synchro)
355       waiting_synchro->suspend();
356     /* If the other actor is not waiting, its suspension is delayed to when the actor is rescheduled. */
357
358     return nullptr;
359   } else {
360     activity::ExecImpl* exec = new activity::ExecImpl();
361     (*exec).set_name("suspend").set_host(host_).set_flops_amount(0.0).start();
362     return activity::ExecImplPtr(exec);
363   }
364 }
365
366 void ActorImpl::resume()
367 {
368   XBT_IN("actor = %p", this);
369
370   if (context_->iwannadie) {
371     XBT_VERB("Ignoring request to suspend an actor that is currently dying.");
372     return;
373   }
374
375   if (not suspended_)
376     return;
377   suspended_ = false;
378
379   /* resume the synchronization that was blocking the resumed actor. */
380   if (waiting_synchro)
381     waiting_synchro->resume();
382
383   XBT_OUT();
384 }
385
386 activity::ActivityImplPtr ActorImpl::join(ActorImpl* actor, double timeout)
387 {
388   activity::ActivityImplPtr sleep = this->sleep(timeout);
389   SIMIX_process_on_exit(actor, [sleep](bool) {
390     if (sleep->surf_action_)
391       sleep->surf_action_->finish(resource::Action::State::FINISHED);
392   });
393   return sleep;
394 }
395
396 activity::ActivityImplPtr ActorImpl::sleep(double duration)
397 {
398   if (not host_->is_on())
399     throw_exception(std::make_exception_ptr(simgrid::HostFailureException(
400         XBT_THROW_POINT, std::string("Host ") + host_->get_cname() + " failed, you cannot sleep there.")));
401
402   activity::SleepImpl* sleep = new activity::SleepImpl();
403   (*sleep).set_name("sleep").set_host(host_).set_duration(duration).start();
404   return activity::SleepImplPtr(sleep);
405 }
406
407 void ActorImpl::throw_exception(std::exception_ptr e)
408 {
409   exception_ = e;
410
411   if (suspended_)
412     resume();
413
414   /* cancel the blocking synchro if any */
415   if (waiting_synchro) {
416
417     activity::ExecImplPtr exec = boost::dynamic_pointer_cast<activity::ExecImpl>(waiting_synchro);
418     if (exec != nullptr)
419       exec->cancel();
420
421     activity::CommImplPtr comm = boost::dynamic_pointer_cast<activity::CommImpl>(waiting_synchro);
422     if (comm != nullptr) {
423       comms.remove(comm);
424       comm->cancel();
425     }
426
427     activity::SleepImplPtr sleep = boost::dynamic_pointer_cast<activity::SleepImpl>(waiting_synchro);
428     if (sleep != nullptr) {
429       sleep->clean_action();
430       if (std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), this) ==
431               end(simix_global->actors_to_run) &&
432           this != SIMIX_process_self()) {
433         XBT_DEBUG("Inserting [%p] %s in the to_run list", this, get_cname());
434         simix_global->actors_to_run.push_back(this);
435       }
436     }
437
438     activity::RawImplPtr raw = boost::dynamic_pointer_cast<activity::RawImpl>(waiting_synchro);
439     if (raw != nullptr) {
440       raw->finish();
441     }
442
443     activity::IoImplPtr io = boost::dynamic_pointer_cast<activity::IoImpl>(waiting_synchro);
444     if (io != nullptr) {
445       io->cancel();
446     }
447   }
448   waiting_synchro = nullptr;
449 }
450
451 void ActorImpl::set_host(s4u::Host* dest)
452 {
453   xbt::intrusive_erase(host_->pimpl_->process_list_, *this);
454   host_ = dest;
455   dest->pimpl_->process_list_.push_back(*this);
456 }
457
458 ActorImplPtr ActorImpl::init(const std::string& name, s4u::Host* host)
459 {
460   ActorImpl* actor = new ActorImpl(xbt::string(name), host);
461   actor->set_ppid(this->pid_);
462
463   intrusive_ptr_add_ref(actor);
464   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
465   s4u::Actor::on_creation(*actor->ciface());
466
467   return ActorImplPtr(actor);
468 }
469
470 ActorImpl* ActorImpl::start(const simix::ActorCode& code)
471 {
472   xbt_assert(code && host_ != nullptr, "Invalid parameters");
473
474   if (not host_->is_on()) {
475     XBT_WARN("Cannot launch actor '%s' on failed host '%s'", name_.c_str(), host_->get_cname());
476     intrusive_ptr_release(this);
477     std::rethrow_exception(
478         std::make_exception_ptr(simgrid::HostFailureException(XBT_THROW_POINT, "Cannot start actor on failed host.")));
479   }
480
481   this->code = code;
482   XBT_VERB("Create context %s", get_cname());
483   context_.reset(simix_global->context_factory->create_context(simix::ActorCode(code), this));
484
485   XBT_DEBUG("Start context '%s'", get_cname());
486
487   /* Add the actor to its host's actor list */
488   host_->pimpl_->process_list_.push_back(*this);
489   simix_global->process_list[pid_] = this;
490
491   /* Now insert it in the global actor list and in the actor to run list */
492   XBT_DEBUG("Inserting [%p] %s(%s) in the to_run list", this, get_cname(), host_->get_cname());
493   simix_global->actors_to_run.push_back(this);
494
495   return this;
496 }
497
498 ActorImplPtr ActorImpl::create(const std::string& name, const simix::ActorCode& code, void* data, s4u::Host* host,
499                                std::unordered_map<std::string, std::string>* properties, ActorImpl* parent_actor)
500 {
501   XBT_DEBUG("Start actor %s@'%s'", name.c_str(), host->get_cname());
502
503   ActorImplPtr actor;
504   if (parent_actor != nullptr)
505     actor = parent_actor->init(xbt::string(name), host);
506   else
507     actor = SIMIX_process_self()->init(xbt::string(name), host);
508
509   /* actor data */
510   actor->set_user_data(data);
511
512   /* Add properties */
513   if (properties != nullptr)
514     for (auto const& kv : *properties)
515       actor->set_property(kv.first, kv.second);
516
517   actor->start(code);
518
519   return actor;
520 }
521
522 void create_maestro(const std::function<void()>& code)
523 {
524   /* Create maestro actor and initialize it */
525   ActorImpl* maestro = new ActorImpl(xbt::string(""), /*host*/ nullptr);
526
527   if (not code) {
528     maestro->context_.reset(simix_global->context_factory->create_context(simix::ActorCode(), maestro));
529   } else {
530     maestro->context_.reset(simix_global->context_factory->create_maestro(simix::ActorCode(code), maestro));
531   }
532
533   maestro->simcall.issuer       = maestro;
534   simix_global->maestro_process = maestro;
535 }
536
537 } // namespace actor
538 } // namespace kernel
539 } // namespace simgrid
540
541 void SIMIX_process_detach()
542 {
543   simgrid::kernel::actor::ActorImpl::detach();
544 }
545
546 smx_actor_t SIMIX_process_attach(const char* name, void* data, const char* hostname,
547                                  std::unordered_map<std::string, std::string>* properties,
548                                  smx_actor_t /*parent_process*/)
549 {
550   return simgrid::kernel::actor::ActorImpl::attach(name, data, sg_host_by_name(hostname), properties).get();
551 }
552
553 /** @deprecated When this function gets removed, also remove the xbt_ex class, that is only there to help users to
554  * transition */
555 void SIMIX_process_throw(smx_actor_t actor, xbt_errcat_t cat, int value, const char* msg)
556 {
557   SMX_EXCEPTION(actor, cat, value, msg);
558
559   if (actor->is_suspended())
560     actor->resume();
561
562   /* cancel the blocking synchro if any */
563   if (actor->waiting_synchro) {
564
565     simgrid::kernel::activity::ExecImplPtr exec =
566         boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(actor->waiting_synchro);
567     if (exec != nullptr)
568       exec->cancel();
569
570     simgrid::kernel::activity::CommImplPtr comm =
571         boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(actor->waiting_synchro);
572     if (comm != nullptr) {
573       actor->comms.remove(comm);
574       comm->cancel();
575     }
576
577     simgrid::kernel::activity::SleepImplPtr sleep =
578         boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(actor->waiting_synchro);
579     if (sleep != nullptr) {
580       sleep->clean_action();
581       if (std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), actor) ==
582               end(simix_global->actors_to_run) &&
583           actor != SIMIX_process_self()) {
584         XBT_DEBUG("Inserting [%p] %s in the to_run list", actor, actor->get_cname());
585         simix_global->actors_to_run.push_back(actor);
586       }
587     }
588
589     simgrid::kernel::activity::RawImplPtr raw =
590         boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(actor->waiting_synchro);
591     if (raw != nullptr) {
592       raw->finish();
593     }
594
595     simgrid::kernel::activity::IoImplPtr io =
596         boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(actor->waiting_synchro);
597     if (io != nullptr) {
598       io->cancel();
599     }
600   }
601   actor->waiting_synchro = nullptr;
602 }
603
604 void simcall_HANDLER_process_suspend(smx_simcall_t simcall, smx_actor_t actor)
605 {
606   smx_activity_t sync_suspend = actor->suspend(simcall->issuer);
607
608   if (actor != simcall->issuer) {
609     SIMIX_simcall_answer(simcall);
610   } else {
611     sync_suspend->simcalls_.push_back(simcall);
612     actor->waiting_synchro = sync_suspend;
613     actor->waiting_synchro->suspend();
614   }
615   /* If we are suspending ourselves, then just do not finish the simcall now */
616 }
617
618 int SIMIX_process_get_maxpid()
619 {
620   return simix_process_maxpid;
621 }
622
623 int SIMIX_process_count()
624 {
625   return simix_global->process_list.size();
626 }
627
628 void* SIMIX_process_self_get_data() // deprecated
629 {
630   smx_actor_t self = SIMIX_process_self();
631
632   if (self == nullptr) {
633     return nullptr;
634   }
635   return self->get_user_data();
636 }
637
638 void SIMIX_process_self_set_data(void* data) // deprecated
639 {
640   SIMIX_process_self()->set_user_data(data);
641 }
642
643 /* needs to be public and without simcall because it is called
644    by exceptions and logging events */
645 const char* SIMIX_process_self_get_name()
646 {
647
648   smx_actor_t process = SIMIX_process_self();
649   if (process == nullptr || process == simix_global->maestro_process)
650     return "maestro";
651
652   return process->get_cname();
653 }
654
655 void simcall_HANDLER_process_join(smx_simcall_t simcall, smx_actor_t process, double timeout)
656 {
657   if (process->finished_) {
658     // The joined process is already finished, just wake up the issuer process right away
659     simcall_process_sleep__set__result(simcall, SIMIX_DONE);
660     SIMIX_simcall_answer(simcall);
661     return;
662   }
663   smx_activity_t sync = simcall->issuer->join(process, timeout);
664   sync->simcalls_.push_back(simcall);
665   simcall->issuer->waiting_synchro = sync;
666 }
667
668 void simcall_HANDLER_process_sleep(smx_simcall_t simcall, double duration)
669 {
670   if (MC_is_active() || MC_record_replay_is_active()) {
671     MC_process_clock_add(simcall->issuer, duration);
672     simcall_process_sleep__set__result(simcall, SIMIX_DONE);
673     SIMIX_simcall_answer(simcall);
674     return;
675   }
676   smx_activity_t sync = simcall->issuer->sleep(duration);
677   sync->simcalls_.push_back(simcall);
678   simcall->issuer->waiting_synchro = sync;
679 }
680
681 /**
682  * @brief Calling this function makes the process to yield.
683  *
684  * Only the current process can call this function, giving back the control to maestro.
685  *
686  * @param self the current process
687  */
688
689 /** @brief Returns the list of processes to run.
690  * @deprecated
691  */
692 const std::vector<smx_actor_t>& simgrid::simix::process_get_runnable()
693 {
694   return simix_global->actors_to_run;
695 }
696
697 /** @brief Returns the process from PID. */
698 smx_actor_t SIMIX_process_from_PID(aid_t PID)
699 {
700   auto actor = simix_global->process_list.find(PID);
701   return actor == simix_global->process_list.end() ? nullptr : actor->second;
702 }
703
704 void SIMIX_process_on_exit(smx_actor_t actor, int_f_pvoid_pvoid_t fun, void* data)
705 {
706   SIMIX_process_on_exit(actor, [fun, data](bool failed) {
707     intptr_t status = failed ? SMX_EXIT_FAILURE : SMX_EXIT_SUCCESS;
708     fun(reinterpret_cast<void*>(status), data);
709   });
710 }
711
712 void SIMIX_process_on_exit(smx_actor_t actor, const std::function<void(int, void*)>& fun, void* data)
713 {
714   SIMIX_process_on_exit(actor, [fun, data](bool failed) { fun(failed ? SMX_EXIT_FAILURE : SMX_EXIT_SUCCESS, data); });
715 }
716
717 void SIMIX_process_on_exit(smx_actor_t actor, const std::function<void(bool /*failed*/)>& fun)
718 {
719   xbt_assert(actor, "current process not found: are you in maestro context ?");
720   actor->on_exit.emplace_back(fun);
721 }
722
723 /** @brief Restart a process, starting it again from the beginning. */
724 /**
725  * @ingroup simix_process_management
726  * @brief Creates and runs a new SIMIX process.
727  *
728  * The structure and the corresponding thread are created and put in the list of ready processes.
729  *
730  * @param name a name for the process. It is for user-level information and can be nullptr.
731  * @param code the main function of the process
732  * @param data a pointer to any data one may want to attach to the new object. It is for user-level information and can
733  * be nullptr.
734  * It can be retrieved with the method ActorImpl::getUserData().
735  * @param host where the new agent is executed.
736  * @param properties the properties of the process
737  */
738 smx_actor_t simcall_process_create(const std::string& name, const simgrid::simix::ActorCode& code, void* data,
739                                    sg_host_t host, std::unordered_map<std::string, std::string>* properties)
740 {
741   smx_actor_t self = SIMIX_process_self();
742   return simgrid::simix::simcall([&name, &code, data, host, properties, self] {
743     return simgrid::kernel::actor::ActorImpl::create(name, code, data, host, properties, self).get();
744   });
745 }
746
747 void simcall_process_set_data(smx_actor_t process, void* data)
748 {
749   simgrid::simix::simcall([process, data] { process->set_user_data(data); });
750 }