Logo AND Algorithmique Numérique Distribuée

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