Logo AND Algorithmique Numérique Distribuée

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