Logo AND Algorithmique Numérique Distribuée

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