Logo AND Algorithmique Numérique Distribuée

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