Logo AND Algorithmique Numérique Distribuée

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