Logo AND Algorithmique Numérique Distribuée

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