Logo AND Algorithmique Numérique Distribuée

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