Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
99b32d28972f7b6fffe8e5aab753077e011f9a3b
[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   while (not on_exit.empty()) {
145     auto exit_fun = on_exit.back();
146     on_exit.pop_back();
147     exit_fun(failed);
148   }
149
150   /* cancel non-blocking activities */
151   for (auto activity : comms)
152     boost::static_pointer_cast<activity::CommImpl>(activity)->cancel();
153   comms.clear();
154
155   XBT_DEBUG("%s@%s(%ld) should not run anymore", get_cname(), get_host()->get_cname(), get_pid());
156
157   if (this == simix_global->maestro_process) /* Do not cleanup maestro */
158     return;
159
160   XBT_DEBUG("Cleanup actor %s (%p), waiting synchro %p", get_cname(), this, waiting_synchro.get());
161
162   /* Unregister from the kill timer if any */
163   if (kill_timer != nullptr) {
164     kill_timer->remove();
165     kill_timer = nullptr;
166   }
167
168   simix_global->mutex.lock();
169
170   simix_global->process_list.erase(pid_);
171   if (host_ && host_process_list_hook.is_linked())
172     simgrid::xbt::intrusive_erase(host_->pimpl_->process_list_, *this);
173   if (not smx_destroy_list_hook.is_linked()) {
174 #if SIMGRID_HAVE_MC
175     xbt_dynar_push_as(simix_global->dead_actors_vector, ActorImpl*, this);
176 #endif
177     simix_global->actors_to_destroy.push_back(*this);
178   }
179
180   simix_global->mutex.unlock();
181
182   context_->iwannadie = false; // don't let the simcall's yield() do a Context::stop(), to avoid infinite loops
183   simgrid::simix::simcall([this] { simgrid::s4u::Actor::on_destruction(*ciface()); });
184   context_->iwannadie = true;
185 }
186
187 void ActorImpl::exit()
188 {
189   context_->iwannadie = true;
190   blocked_            = false;
191   suspended_          = false;
192   exception_          = nullptr;
193
194   // Forcefully kill the actor if its host is turned off. Not a HostFailureException because you should not survive that
195   if (not host_->is_on())
196     this->throw_exception(std::make_exception_ptr(ForcefulKillException("host failed")));
197
198   /* destroy the blocking synchro if any */
199   if (waiting_synchro != nullptr) {
200     waiting_synchro->cancel();
201     waiting_synchro->state_ = SIMIX_FAILED;
202
203     activity::ExecImplPtr exec   = boost::dynamic_pointer_cast<activity::ExecImpl>(waiting_synchro);
204     activity::CommImplPtr comm   = boost::dynamic_pointer_cast<activity::CommImpl>(waiting_synchro);
205
206     if (exec != nullptr) {
207       exec->clean_action();
208     } else if (comm != nullptr) {
209       comms.remove(waiting_synchro);
210       // Remove first occurrence of &actor->simcall:
211       auto i = boost::range::find(waiting_synchro->simcalls_, &simcall);
212       if (i != waiting_synchro->simcalls_.end())
213         waiting_synchro->simcalls_.remove(&simcall);
214     } else {
215       activity::ActivityImplPtr(waiting_synchro)->finish();
216     }
217
218     waiting_synchro = nullptr;
219   }
220 }
221
222 void ActorImpl::kill(ActorImpl* actor)
223 {
224   if (actor->finished_) {
225     XBT_DEBUG("Ignoring request to kill actor %s@%s that is already dead", actor->get_cname(),
226               actor->host_->get_cname());
227     return;
228   }
229
230   XBT_DEBUG("Actor '%s'@%s is killing actor '%s'@%s", get_cname(), host_ ? host_->get_cname() : "", actor->get_cname(),
231             actor->host_ ? actor->host_->get_cname() : "");
232
233   actor->exit();
234
235   if (std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), actor) ==
236           end(simix_global->actors_to_run) &&
237       actor != this) {
238     XBT_DEBUG("Inserting %s in the to_run list", actor->get_cname());
239     simix_global->actors_to_run.push_back(actor);
240   }
241 }
242
243 void ActorImpl::kill_all()
244 {
245   for (auto const& kv : simix_global->process_list)
246     if (kv.second != this)
247       this->kill(kv.second);
248 }
249
250 void ActorImpl::set_kill_time(double kill_time)
251 {
252   if (kill_time <= SIMIX_get_clock())
253     return;
254   XBT_DEBUG("Set kill time %f for actor %s@%s", kill_time, get_cname(), host_->get_cname());
255   kill_timer = simix::Timer::set(kill_time, [this] {
256     this->exit();
257     kill_timer = nullptr;
258   });
259 }
260
261 double ActorImpl::get_kill_time()
262 {
263   return kill_timer ? kill_timer->get_date() : 0;
264 }
265
266 void ActorImpl::yield()
267 {
268   XBT_DEBUG("Yield actor '%s'", get_cname());
269
270   /* Go into sleep and return control to maestro */
271   context_->suspend();
272
273   /* Ok, maestro returned control to us */
274   XBT_DEBUG("Control returned to me: '%s'", get_cname());
275
276   if (context_->iwannadie) {
277     XBT_DEBUG("Actor %s@%s is dead", get_cname(), host_->get_cname());
278     // throw simgrid::kernel::context::ForcefulKillException(); Does not seem to properly kill the actor
279     context_->stop();
280     THROW_IMPOSSIBLE;
281   }
282
283   if (suspended_) {
284     XBT_DEBUG("Hey! I'm suspended.");
285
286     xbt_assert(exception_ == nullptr, "Gasp! This exception may be lost by subsequent calls.");
287     suspended_ = false;
288     suspend(this);
289   }
290
291   if (exception_ != nullptr) {
292     XBT_DEBUG("Wait, maestro left me an exception");
293     std::exception_ptr exception = std::move(exception_);
294     exception_                   = nullptr;
295     std::rethrow_exception(std::move(exception));
296   }
297
298   if (SMPI_switch_data_segment && not finished_) {
299     SMPI_switch_data_segment(iface());
300   }
301 }
302
303 /** This actor will be terminated automatically when the last non-daemon actor finishes */
304 void ActorImpl::daemonize()
305 {
306   if (not daemon_) {
307     daemon_ = true;
308     simix_global->daemons.push_back(this);
309     SIMIX_process_on_exit(this, [this](bool) {
310       auto& vect = simix_global->daemons;
311       auto it    = std::find(vect.begin(), vect.end(), this);
312       xbt_assert(it != vect.end(), "The dying daemon is not a daemon after all. Please report that bug.");
313
314       /* Don't move the whole content since we don't really care about the order */
315       std::swap(*it, vect.back());
316       vect.pop_back();
317     });
318   }
319 }
320
321 s4u::Actor* ActorImpl::restart()
322 {
323   xbt_assert(this != simix_global->maestro_process, "Restarting maestro is not supported");
324
325   XBT_DEBUG("Restarting actor %s on %s", get_cname(), host_->get_cname());
326
327   // retrieve the arguments of the old actor
328   ProcessArg arg = ProcessArg(host_, this);
329
330   // kill the old actor
331   context::Context::self()->get_actor()->kill(this);
332
333   // start the new actor
334   ActorImplPtr actor =
335       ActorImpl::create(arg.name, std::move(arg.code), arg.data, arg.host, arg.properties.get(), nullptr);
336   actor->on_exit = std::move(arg.on_exit);
337   actor->set_kill_time(arg.kill_time);
338   actor->set_auto_restart(arg.auto_restart);
339
340   return actor->ciface();
341 }
342
343 activity::ActivityImplPtr ActorImpl::suspend(ActorImpl* issuer)
344 {
345   if (suspended_) {
346     XBT_DEBUG("Actor '%s' is already suspended", get_cname());
347     return nullptr;
348   }
349
350   suspended_ = true;
351
352   /* If we are suspending another actor that is waiting on a sync, suspend its synchronization. */
353   if (this != issuer) {
354     if (waiting_synchro)
355       waiting_synchro->suspend();
356     /* If the other actor is not waiting, its suspension is delayed to when the actor is rescheduled. */
357
358     return nullptr;
359   } else {
360     activity::ExecImpl* exec = new activity::ExecImpl();
361     (*exec).set_name("suspend").set_host(host_).set_flops_amount(0.0).start();
362     return activity::ExecImplPtr(exec);
363   }
364 }
365
366 void ActorImpl::resume()
367 {
368   XBT_IN("actor = %p", this);
369
370   if (context_->iwannadie) {
371     XBT_VERB("Ignoring request to suspend an actor that is currently dying.");
372     return;
373   }
374
375   if (not suspended_)
376     return;
377   suspended_ = false;
378
379   /* resume the synchronization that was blocking the resumed actor. */
380   if (waiting_synchro)
381     waiting_synchro->resume();
382
383   XBT_OUT();
384 }
385
386 activity::ActivityImplPtr ActorImpl::join(ActorImpl* actor, double timeout)
387 {
388   activity::ActivityImplPtr sleep = this->sleep(timeout);
389   SIMIX_process_on_exit(actor, [sleep](bool) {
390     if (sleep->surf_action_)
391       sleep->surf_action_->finish(resource::Action::State::FINISHED);
392   });
393   return sleep;
394 }
395
396 activity::ActivityImplPtr ActorImpl::sleep(double duration)
397 {
398   if (not host_->is_on())
399     throw_exception(std::make_exception_ptr(simgrid::HostFailureException(
400         XBT_THROW_POINT, std::string("Host ") + host_->get_cname() + " failed, you cannot sleep there.")));
401
402   activity::SleepImpl* sleep = new activity::SleepImpl();
403   (*sleep).set_name("sleep").set_host(host_).set_duration(duration).start();
404   return activity::SleepImplPtr(sleep);
405 }
406
407 void ActorImpl::throw_exception(std::exception_ptr e)
408 {
409   exception_ = e;
410
411   if (suspended_)
412     resume();
413
414   /* cancel the blocking synchro if any */
415   if (waiting_synchro) {
416     waiting_synchro->cancel();
417
418     activity::CommImplPtr comm = boost::dynamic_pointer_cast<activity::CommImpl>(waiting_synchro);
419
420     if (comm != nullptr)
421       comms.remove(comm);
422
423     waiting_synchro = nullptr;
424   }
425 }
426
427 void ActorImpl::set_host(s4u::Host* dest)
428 {
429   xbt::intrusive_erase(host_->pimpl_->process_list_, *this);
430   host_ = dest;
431   dest->pimpl_->process_list_.push_back(*this);
432 }
433
434 ActorImplPtr ActorImpl::init(const std::string& name, s4u::Host* host)
435 {
436   ActorImpl* actor = new ActorImpl(xbt::string(name), host);
437   actor->set_ppid(this->pid_);
438
439   intrusive_ptr_add_ref(actor);
440   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
441   s4u::Actor::on_creation(*actor->ciface());
442
443   return ActorImplPtr(actor);
444 }
445
446 ActorImpl* ActorImpl::start(const simix::ActorCode& code)
447 {
448   xbt_assert(code && host_ != nullptr, "Invalid parameters");
449
450   if (not host_->is_on()) {
451     XBT_WARN("Cannot launch actor '%s' on failed host '%s'", name_.c_str(), host_->get_cname());
452     intrusive_ptr_release(this);
453     std::rethrow_exception(
454         std::make_exception_ptr(simgrid::HostFailureException(XBT_THROW_POINT, "Cannot start actor on failed host.")));
455   }
456
457   this->code = code;
458   XBT_VERB("Create context %s", get_cname());
459   context_.reset(simix_global->context_factory->create_context(simix::ActorCode(code), this));
460
461   XBT_DEBUG("Start context '%s'", get_cname());
462
463   /* Add the actor to its host's actor list */
464   host_->pimpl_->process_list_.push_back(*this);
465   simix_global->process_list[pid_] = this;
466
467   /* Now insert it in the global actor list and in the actor to run list */
468   XBT_DEBUG("Inserting [%p] %s(%s) in the to_run list", this, get_cname(), host_->get_cname());
469   simix_global->actors_to_run.push_back(this);
470
471   return this;
472 }
473
474 ActorImplPtr ActorImpl::create(const std::string& name, const simix::ActorCode& code, void* data, s4u::Host* host,
475                                const std::unordered_map<std::string, std::string>* properties, ActorImpl* parent_actor)
476 {
477   XBT_DEBUG("Start actor %s@'%s'", name.c_str(), host->get_cname());
478
479   ActorImplPtr actor;
480   if (parent_actor != nullptr)
481     actor = parent_actor->init(xbt::string(name), host);
482   else
483     actor = SIMIX_process_self()->init(xbt::string(name), host);
484
485   /* actor data */
486   actor->set_user_data(data);
487
488   /* Add properties */
489   if (properties != nullptr)
490     actor->set_properties(*properties);
491
492   actor->start(code);
493
494   return actor;
495 }
496
497 void create_maestro(const std::function<void()>& code)
498 {
499   /* Create maestro actor and initialize it */
500   ActorImpl* maestro = new ActorImpl(xbt::string(""), /*host*/ nullptr);
501
502   if (not code) {
503     maestro->context_.reset(simix_global->context_factory->create_context(simix::ActorCode(), maestro));
504   } else {
505     maestro->context_.reset(simix_global->context_factory->create_maestro(simix::ActorCode(code), maestro));
506   }
507
508   maestro->simcall.issuer       = maestro;
509   simix_global->maestro_process = maestro;
510 }
511
512 } // namespace actor
513 } // namespace kernel
514 } // namespace simgrid
515
516 void SIMIX_process_detach()
517 {
518   simgrid::kernel::actor::ActorImpl::detach();
519 }
520
521 smx_actor_t SIMIX_process_attach(const char* name, void* data, const char* hostname,
522                                  std::unordered_map<std::string, std::string>* properties,
523                                  smx_actor_t /*parent_process*/)
524 {
525   return simgrid::kernel::actor::ActorImpl::attach(name, data, sg_host_by_name(hostname), properties).get();
526 }
527
528 /** @deprecated When this function gets removed, also remove the xbt_ex class, that is only there to help users to
529  * transition */
530 void SIMIX_process_throw(smx_actor_t actor, xbt_errcat_t cat, int value, const char* msg)
531 {
532   xbt_ex e(XBT_THROW_POINT, msg);
533   e.category = cat;
534   e.value    = value;
535   actor->throw_exception(std::make_exception_ptr(e));
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 actor = simix_global->process_list.find(PID);
635   return actor == simix_global->process_list.end() ? nullptr : actor->second;
636 }
637
638 void SIMIX_process_on_exit(smx_actor_t actor, int_f_pvoid_pvoid_t fun, void* data)
639 {
640   SIMIX_process_on_exit(actor, [fun, data](bool failed) {
641     intptr_t status = failed ? SMX_EXIT_FAILURE : SMX_EXIT_SUCCESS;
642     fun(reinterpret_cast<void*>(status), data);
643   });
644 }
645
646 void SIMIX_process_on_exit(smx_actor_t actor, const std::function<void(int, void*)>& fun, void* data)
647 {
648   SIMIX_process_on_exit(actor, [fun, data](bool failed) { fun(failed ? SMX_EXIT_FAILURE : SMX_EXIT_SUCCESS, data); });
649 }
650
651 void SIMIX_process_on_exit(smx_actor_t actor, const std::function<void(bool /*failed*/)>& fun)
652 {
653   xbt_assert(actor, "current process not found: are you in maestro context ?");
654   actor->on_exit.emplace_back(fun);
655 }
656
657 /** @brief Restart a process, starting it again from the beginning. */
658 /**
659  * @ingroup simix_process_management
660  * @brief Creates and runs a new SIMIX process.
661  *
662  * The structure and the corresponding thread are created and put in the list of ready processes.
663  *
664  * @param name a name for the process. It is for user-level information and can be nullptr.
665  * @param code the main function of the process
666  * @param data a pointer to any data one may want to attach to the new object. It is for user-level information and can
667  * be nullptr.
668  * It can be retrieved with the method ActorImpl::getUserData().
669  * @param host where the new agent is executed.
670  * @param properties the properties of the process
671  */
672 smx_actor_t simcall_process_create(const std::string& name, const simgrid::simix::ActorCode& code, void* data,
673                                    sg_host_t host, std::unordered_map<std::string, std::string>* properties)
674 {
675   smx_actor_t self = SIMIX_process_self();
676   return simgrid::simix::simcall([&name, &code, data, host, properties, self] {
677     return simgrid::kernel::actor::ActorImpl::create(name, code, data, host, properties, self).get();
678   });
679 }
680
681 void simcall_process_set_data(smx_actor_t process, void* data)
682 {
683   simgrid::simix::simcall([process, data] { process->set_user_data(data); });
684 }