Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't use old fashioned simcall when you don't have to
[simgrid.git] / src / s4u / s4u_Actor.cpp
1 /* Copyright (c) 2006-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 "simgrid/Exception.hpp"
7 #include "simgrid/actor.h"
8 #include "simgrid/s4u/Actor.hpp"
9 #include "simgrid/s4u/Exec.hpp"
10 #include "simgrid/s4u/Host.hpp"
11 #include "simgrid/s4u/VirtualMachine.hpp"
12 #include "src/kernel/activity/ExecImpl.hpp"
13 #include "src/simix/smx_private.hpp"
14 #include "src/surf/HostImpl.hpp"
15
16 #include <algorithm>
17 #include <sstream>
18
19 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor, "S4U actors");
20
21 namespace simgrid {
22 namespace s4u {
23
24 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_creation;
25 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_suspend;
26 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_resume;
27 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_sleep;
28 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_wake_up;
29 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_migration_start;
30 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_migration_end;
31 simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> s4u::Actor::on_destruction;
32
33 // ***** Actor creation *****
34 ActorPtr Actor::self()
35 {
36   smx_context_t self_context = simgrid::kernel::context::Context::self();
37   if (self_context == nullptr)
38     return simgrid::s4u::ActorPtr();
39
40   return self_context->get_actor()->iface();
41 }
42 ActorPtr Actor::init(const std::string& name, s4u::Host* host)
43 {
44   smx_actor_t self = SIMIX_process_self();
45   kernel::actor::ActorImpl* actor = simix::simcall([self, &name, host] { return self->init(name, host).get(); });
46   return actor->ciface();
47 }
48
49 ActorPtr Actor::start(const std::function<void()>& code)
50 {
51   simgrid::simix::simcall([this, &code] { pimpl_->start(code); });
52   return this;
53 }
54
55 ActorPtr Actor::create(const std::string& name, s4u::Host* host, const std::function<void()>& code)
56 {
57   smx_actor_t self = SIMIX_process_self();
58   kernel::actor::ActorImpl* actor =
59       simix::simcall([self, &name, host, &code] { return self->init(name, host)->start(code); });
60
61   return actor->iface();
62 }
63
64 ActorPtr Actor::create(const std::string& name, s4u::Host* host, const std::string& function,
65                        std::vector<std::string> args)
66 {
67   simgrid::simix::ActorCodeFactory& factory = SIMIX_get_actor_code_factory(function);
68   return create(name, host, factory(std::move(args)));
69 }
70
71 void intrusive_ptr_add_ref(Actor* actor)
72 {
73   intrusive_ptr_add_ref(actor->pimpl_);
74 }
75 void intrusive_ptr_release(Actor* actor)
76 {
77   intrusive_ptr_release(actor->pimpl_);
78 }
79
80 // ***** Actor methods *****
81
82 void Actor::join()
83 {
84   simcall_process_join(this->pimpl_, -1);
85 }
86
87 void Actor::join(double timeout)
88 {
89   simcall_process_join(this->pimpl_, timeout);
90 }
91
92 void Actor::set_auto_restart(bool autorestart)
93 {
94   simgrid::simix::simcall([this, autorestart]() {
95     xbt_assert(autorestart && not pimpl_->has_to_auto_restart()); // FIXME: handle all cases
96     pimpl_->set_auto_restart(autorestart);
97
98     simgrid::kernel::actor::ProcessArg* arg = new simgrid::kernel::actor::ProcessArg(pimpl_->get_host(), pimpl_);
99     XBT_DEBUG("Adding Process %s to the actors_at_boot_ list of Host %s", arg->name.c_str(), arg->host->get_cname());
100     pimpl_->get_host()->pimpl_->actors_at_boot_.emplace_back(arg);
101   });
102 }
103
104 void Actor::on_exit(int_f_pvoid_pvoid_t fun,
105                     void* data) /* deprecated: cleanup SIMIX_process_on_exit: change prototype of second parameter and
106                                    remove the last one */
107 {
108   simgrid::simix::simcall([this, fun, data] { SIMIX_process_on_exit(pimpl_, fun, data); });
109 }
110
111 void Actor::on_exit(const std::function<void(int, void*)>& fun, void* data) /* deprecated */
112 {
113   on_exit([fun, data](bool exit) { fun(exit, data); });
114 }
115
116 void Actor::on_exit(const std::function<void(bool /*failed*/)>& fun)
117 {
118   simgrid::simix::simcall(
119       [this, fun] { SIMIX_process_on_exit(pimpl_, [fun](int a, void* /*data*/) { fun(a != 0); }, nullptr); });
120 }
121
122 void Actor::migrate(Host* new_host)
123 {
124   s4u::Actor::on_migration_start(this);
125
126   simgrid::simix::simcall([this, new_host]() {
127     if (pimpl_->waiting_synchro != nullptr) {
128       // The actor is blocked on an activity. If it's an exec, migrate it too.
129       // FIXME: implement the migration of other kind of activities
130       simgrid::kernel::activity::ExecImplPtr exec =
131           boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(pimpl_->waiting_synchro);
132       xbt_assert(exec.get() != nullptr, "We can only migrate blocked actors when they are blocked on executions.");
133       exec->migrate(new_host);
134     }
135     this->pimpl_->set_host(new_host);
136   });
137
138   s4u::Actor::on_migration_end(this);
139 }
140
141 s4u::Host* Actor::get_host()
142 {
143   return this->pimpl_->get_host();
144 }
145
146 void Actor::daemonize()
147 {
148   simgrid::simix::simcall([this]() { pimpl_->daemonize(); });
149 }
150
151 bool Actor::is_daemon() const
152 {
153   return this->pimpl_->is_daemon();
154 }
155
156 const simgrid::xbt::string& Actor::get_name() const
157 {
158   return this->pimpl_->get_name();
159 }
160
161 const char* Actor::get_cname() const
162 {
163   return this->pimpl_->get_cname();
164 }
165
166 aid_t Actor::get_pid() const
167 {
168   return this->pimpl_->get_pid();
169 }
170
171 aid_t Actor::get_ppid() const
172 {
173   return this->pimpl_->get_ppid();
174 }
175
176 void Actor::suspend()
177 {
178   s4u::Actor::on_suspend(this);
179   simcall_process_suspend(pimpl_);
180 }
181
182 void Actor::resume()
183 {
184   simgrid::simix::simcall([this] { pimpl_->resume(); });
185   s4u::Actor::on_resume(this);
186 }
187
188 bool Actor::is_suspended()
189 {
190   return simgrid::simix::simcall([this] { return pimpl_->is_suspended(); });
191 }
192
193 void Actor::set_kill_time(double kill_time)
194 {
195   simgrid::simix::simcall([this, kill_time] { pimpl_->set_kill_time(kill_time); });
196 }
197
198 /** @brief Get the kill time of an actor(or 0 if unset). */
199 double Actor::get_kill_time()
200 {
201   return pimpl_->get_kill_time();
202 }
203
204 void Actor::kill(aid_t pid) // deprecated
205 {
206   smx_actor_t killer  = SIMIX_process_self();
207   smx_actor_t victim  = SIMIX_process_from_PID(pid);
208   if (victim != nullptr) {
209     simgrid::simix::simcall([killer, victim] { killer->kill(victim); });
210   } else {
211     std::ostringstream oss;
212     oss << "kill: (" << pid << ") - No such actor" << std::endl;
213     throw std::runtime_error(oss.str());
214   }
215 }
216
217 void Actor::kill()
218 {
219   smx_actor_t process = SIMIX_process_self();
220   simgrid::simix::simcall([this, process] {
221     if (pimpl_ == simix_global->maestro_process)
222       pimpl_->exit();
223     else
224       process->kill(pimpl_);
225   });
226 }
227
228 smx_actor_t Actor::get_impl()
229 {
230   return pimpl_;
231 }
232
233 // ***** Static functions *****
234
235 ActorPtr Actor::by_pid(aid_t pid)
236 {
237   smx_actor_t process = SIMIX_process_from_PID(pid);
238   if (process != nullptr)
239     return process->iface();
240   else
241     return ActorPtr();
242 }
243
244 void Actor::kill_all()
245 {
246   smx_actor_t self = SIMIX_process_self();
247   simgrid::simix::simcall([self] { self->kill_all(); });
248 }
249
250 std::unordered_map<std::string, std::string>* Actor::get_properties()
251 {
252   return simgrid::simix::simcall([this] { return this->pimpl_->get_properties(); });
253 }
254
255 /** Retrieve the property value (or nullptr if not set) */
256 const char* Actor::get_property(const std::string& key)
257 {
258   return simgrid::simix::simcall([this, &key] { return pimpl_->get_property(key); });
259 }
260
261 void Actor::set_property(const std::string& key, const std::string& value)
262 {
263   simgrid::simix::simcall([this, &key, &value] { pimpl_->set_property(key, value); });
264 }
265
266 Actor* Actor::restart()
267 {
268   return simgrid::simix::simcall([this]() { return pimpl_->restart(); });
269 }
270
271 // ***** this_actor *****
272
273 namespace this_actor {
274
275 /** Returns true if run from the kernel mode, and false if run from a real actor
276  *
277  * Everything that is run out of any actor (simulation setup before the engine is run,
278  * computing the model evolutions as a result to the actors' action, etc) is run in
279  * kernel mode, just as in any operating systems.
280  *
281  * In SimGrid, the actor in charge of doing the stuff in kernel mode is called Maestro,
282  * because it is the one scheduling when the others should move or wait.
283  */
284 bool is_maestro()
285 {
286   smx_actor_t process = SIMIX_process_self();
287   return process == nullptr || process == simix_global->maestro_process;
288 }
289
290 void sleep_for(double duration)
291 {
292   if (duration > 0) {
293     smx_actor_t actor = SIMIX_process_self();
294     simgrid::s4u::Actor::on_sleep(actor->iface());
295
296     simcall_process_sleep(duration);
297
298     simgrid::s4u::Actor::on_wake_up(actor->iface());
299   }
300 }
301
302 void yield()
303 {
304   simgrid::simix::simcall([] { /* do nothing*/ });
305 }
306
307 XBT_PUBLIC void sleep_until(double timeout)
308 {
309   double now = SIMIX_get_clock();
310   if (timeout > now)
311     sleep_for(timeout - now);
312 }
313
314 void execute(double flops)
315 {
316   execute(flops, 1.0 /* priority */);
317 }
318
319 void execute(double flops, double priority)
320 {
321   exec_init(flops)->set_priority(priority)->start()->wait();
322 }
323
324 void parallel_execute(const std::vector<s4u::Host*>& hosts, const std::vector<double>& flops_amounts,
325                       const std::vector<double>& bytes_amounts)
326 {
327   parallel_execute(hosts, flops_amounts, bytes_amounts, -1);
328 }
329
330 void parallel_execute(const std::vector<s4u::Host*>& hosts, const std::vector<double>& flops_amounts,
331                       const std::vector<double>& bytes_amounts, double timeout)
332 {
333   xbt_assert(hosts.size() > 0, "Your parallel executions must span over at least one host.");
334   xbt_assert(hosts.size() == flops_amounts.size() || flops_amounts.empty(),
335              "Host count (%zu) does not match flops_amount count (%zu).", hosts.size(), flops_amounts.size());
336   xbt_assert(hosts.size() * hosts.size() == bytes_amounts.size() || bytes_amounts.empty(),
337              "bytes_amounts must be a matrix of size host_count * host_count (%zu*%zu), but it's of size %zu.",
338              hosts.size(), hosts.size(), flops_amounts.size());
339   /* Check that we are not mixing VMs and PMs in the parallel task */
340   bool is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(hosts.front()));
341   xbt_assert(std::all_of(hosts.begin(), hosts.end(),
342                          [is_a_vm](s4u::Host* elm) {
343                            bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::s4u::VirtualMachine*>(elm));
344                            return is_a_vm == tmp_is_a_vm;
345                          }),
346              "parallel_execute: mixing VMs and PMs is not supported (yet).");
347   /* checking for infinite values */
348   xbt_assert(std::all_of(flops_amounts.begin(), flops_amounts.end(), [](double elm) { return std::isfinite(elm); }),
349              "flops_amounts comprises infinite values!");
350   xbt_assert(std::all_of(bytes_amounts.begin(), bytes_amounts.end(), [](double elm) { return std::isfinite(elm); }),
351              "flops_amounts comprises infinite values!");
352
353   exec_init(hosts, flops_amounts, bytes_amounts)->set_timeout(timeout)->wait();
354 }
355
356 // deprecated
357 void parallel_execute(int host_nb, s4u::Host* const* host_list, const double* flops_amount, const double* bytes_amount,
358                       double timeout)
359 {
360   smx_activity_t s =
361       simcall_execution_parallel_start("", host_nb, host_list, flops_amount, bytes_amount, /* rate */ -1, timeout);
362   simcall_execution_wait(s);
363   delete[] flops_amount;
364   delete[] bytes_amount;
365 }
366
367 // deprecated
368 void parallel_execute(int host_nb, s4u::Host* const* host_list, const double* flops_amount, const double* bytes_amount)
369 {
370   smx_activity_t s = simcall_execution_parallel_start("", host_nb, host_list, flops_amount, bytes_amount,
371                                                       /* rate */ -1, /*timeout*/ -1);
372   simcall_execution_wait(s);
373   delete[] flops_amount;
374   delete[] bytes_amount;
375 }
376
377 ExecPtr exec_init(double flops_amount)
378 {
379   return ExecPtr(new ExecSeq(get_host(), flops_amount));
380 }
381
382 ExecPtr exec_init(const std::vector<s4u::Host*>& hosts, const std::vector<double>& flops_amounts,
383                   const std::vector<double>& bytes_amounts)
384 {
385   return ExecPtr(new ExecPar(hosts, flops_amounts, bytes_amounts));
386 }
387
388 ExecPtr exec_async(double flops)
389 {
390   ExecPtr res = exec_init(flops);
391   res->start();
392   return res;
393 }
394
395 aid_t get_pid()
396 {
397   return SIMIX_process_self()->get_pid();
398 }
399
400 aid_t get_ppid()
401 {
402   return SIMIX_process_self()->get_ppid();
403 }
404
405 std::string get_name()
406 {
407   return SIMIX_process_self()->get_name();
408 }
409
410 const char* get_cname()
411 {
412   return SIMIX_process_self()->get_cname();
413 }
414
415 Host* get_host()
416 {
417   return SIMIX_process_self()->get_host();
418 }
419
420 void suspend()
421 {
422   smx_actor_t actor = SIMIX_process_self();
423   simgrid::s4u::Actor::on_suspend(actor->iface());
424
425   simcall_process_suspend(actor);
426 }
427
428 void resume()
429 {
430   smx_actor_t process = SIMIX_process_self();
431   simgrid::simix::simcall([process] { process->resume(); });
432   simgrid::s4u::Actor::on_resume(process->iface());
433 }
434
435 void exit()
436 {
437   smx_actor_t actor = SIMIX_process_self();
438   simgrid::simix::simcall([actor] { actor->exit(); });
439 }
440
441 void on_exit(const std::function<void(bool)>& fun)
442 {
443   SIMIX_process_self()->iface()->on_exit(fun);
444 }
445
446 void on_exit(const std::function<void(int, void*)>& fun, void* data) /* deprecated */
447 {
448   SIMIX_process_self()->iface()->on_exit([fun, data](bool exit) { fun(exit, data); });
449 }
450
451 /** @brief Moves the current actor to another host
452  *
453  * @see simgrid::s4u::Actor::migrate() for more information
454  */
455 void migrate(Host* new_host)
456 {
457   SIMIX_process_self()->iface()->migrate(new_host);
458 }
459
460 std::string getName() /* deprecated */
461 {
462   return get_name();
463 }
464 const char* getCname() /* deprecated */
465 {
466   return get_cname();
467 }
468 bool isMaestro() /* deprecated */
469 {
470   return is_maestro();
471 }
472 aid_t getPid() /* deprecated */
473 {
474   return get_pid();
475 }
476 aid_t getPpid() /* deprecated */
477 {
478   return get_ppid();
479 }
480 Host* getHost() /* deprecated */
481 {
482   return get_host();
483 }
484 void on_exit(int_f_pvoid_pvoid_t fun, void* data) /* deprecated */
485 {
486   SIMIX_process_self()->iface()->on_exit([fun, data](int a) { fun((void*)(intptr_t)a, data); });
487 }
488 void onExit(int_f_pvoid_pvoid_t fun, void* data) /* deprecated */
489 {
490   on_exit([fun, data](int a) { fun((void*)(intptr_t)a, data); });
491 }
492 void kill() /* deprecated */
493 {
494   exit();
495 }
496
497 } // namespace this_actor
498 } // namespace s4u
499 } // namespace simgrid
500
501 /* **************************** Public C interface *************************** */
502
503 /** @ingroup m_actor_management
504  * @brief Returns the process ID of @a actor.
505  *
506  * This function checks whether @a actor is a valid pointer and return its PID (or 0 in case of problem).
507  */
508 aid_t sg_actor_get_PID(sg_actor_t actor)
509 {
510   /* Do not raise an exception here: this function is called by the logs
511    * and the exceptions, so it would be called back again and again */
512   if (actor == nullptr || actor->get_impl() == nullptr)
513     return 0;
514   return actor->get_pid();
515 }
516
517 /** @ingroup m_actor_management
518  * @brief Returns the process ID of the parent of @a actor.
519  *
520  * This function checks whether @a actor is a valid pointer and return its parent's PID.
521  * Returns -1 if the actor has not been created by any other actor.
522  */
523 aid_t sg_actor_get_PPID(sg_actor_t actor)
524 {
525   return actor->get_ppid();
526 }
527
528 /** @ingroup m_actor_management
529  *
530  * @brief Return a #sg_actor_t given its PID.
531  *
532  * This function search in the list of all the created sg_actor_t for a sg_actor_t  whose PID is equal to @a PID.
533  * If none is found, @c nullptr is returned.
534    Note that the PID are unique in the whole simulation, not only on a given host.
535  */
536 sg_actor_t sg_actor_by_PID(aid_t pid)
537 {
538   return simgrid::s4u::Actor::by_pid(pid).get();
539 }
540
541 /** @ingroup m_actor_management
542  * @brief Return the name of an actor.
543  */
544 const char* sg_actor_get_name(sg_actor_t actor)
545 {
546   return actor->get_cname();
547 }
548
549 sg_host_t sg_actor_get_host(sg_actor_t actor)
550 {
551   return actor->get_host();
552 }
553
554 /** @ingroup m_actor_management
555  * @brief Returns the value of a given actor property
556  *
557  * @param actor an actor
558  * @param name a property name
559  * @return value of a property (or nullptr if the property is not set)
560  */
561 const char* sg_actor_get_property_value(sg_actor_t actor, const char* name)
562 {
563   return actor->get_property(name);
564 }
565
566 /** @ingroup m_actor_management
567  * @brief Return the list of properties
568  *
569  * This function returns all the parameters associated with an actor
570  */
571 xbt_dict_t sg_actor_get_properties(sg_actor_t actor)
572 {
573   xbt_assert(actor != nullptr, "Invalid parameter: First argument must not be nullptr");
574   xbt_dict_t as_dict                        = xbt_dict_new_homogeneous(xbt_free_f);
575   std::unordered_map<std::string, std::string>* props = actor->get_properties();
576   if (props == nullptr)
577     return nullptr;
578   for (auto const& kv : *props) {
579     xbt_dict_set(as_dict, kv.first.c_str(), xbt_strdup(kv.second.c_str()), nullptr);
580   }
581   return as_dict;
582 }
583
584 /** @ingroup m_actor_management
585  * @brief Suspend the actor.
586  *
587  * This function suspends the actor by suspending the task on which it was waiting for the completion.
588  */
589 void sg_actor_suspend(sg_actor_t actor)
590 {
591   xbt_assert(actor != nullptr, "Invalid parameter: First argument must not be nullptr");
592   actor->suspend();
593 }
594
595 /** @ingroup m_actor_management
596  * @brief Resume a suspended actor.
597  *
598  * This function resumes a suspended actor by resuming the task on which it was waiting for the completion.
599  */
600 void sg_actor_resume(sg_actor_t actor)
601 {
602   xbt_assert(actor != nullptr, "Invalid parameter: First argument must not be nullptr");
603   actor->resume();
604 }
605
606 /** @ingroup m_actor_management
607  * @brief Returns true if the actor is suspended .
608  *
609  * This checks whether an actor is suspended or not by inspecting the task on which it was waiting for the completion.
610  */
611 int sg_actor_is_suspended(sg_actor_t actor)
612 {
613   return actor->is_suspended();
614 }
615
616 /**
617  * @ingroup m_actor_management
618  * @brief Restarts an actor from the beginning.
619  */
620 sg_actor_t sg_actor_restart(sg_actor_t actor)
621 {
622   return actor->restart();
623 }
624
625 /**
626  * @ingroup m_actor_management
627  * @brief Sets the "auto-restart" flag of the actor.
628  * If the flag is set to 1, the actor will be automatically restarted when its host comes back up.
629  */
630 void sg_actor_set_auto_restart(sg_actor_t actor, int auto_restart)
631 {
632   actor->set_auto_restart(auto_restart);
633 }
634
635 /** @ingroup m_actor_management
636  * @brief This actor will be terminated automatically when the last non-daemon actor finishes
637  */
638 void sg_actor_daemonize(sg_actor_t actor)
639 {
640   actor->daemonize();
641 }
642
643 /** @ingroup m_actor_management
644  * @brief Migrates an actor to another location.
645  *
646  * This function changes the value of the #sg_host_t on  which @a actor is running.
647  */
648 void sg_actor_migrate(sg_actor_t process, sg_host_t host)
649 {
650   process->migrate(host);
651 }
652
653 /** @ingroup m_actor_management
654  * @brief Wait for the completion of a #sg_actor_t.
655  *
656  * @param actor the actor to wait for
657  * @param timeout wait until the actor is over, or the timeout expires
658  */
659 void sg_actor_join(sg_actor_t actor, double timeout)
660 {
661   actor->join(timeout);
662 }
663
664 void sg_actor_kill(sg_actor_t actor)
665 {
666   actor->kill();
667 }
668
669 void sg_actor_kill_all()
670 {
671   simgrid::s4u::Actor::kill_all();
672 }
673
674 /** @ingroup m_actor_management
675  * @brief Set the kill time of an actor.
676  *
677  * @param actor an actor
678  * @param kill_time the time when the actor is killed.
679  */
680 void sg_actor_set_kill_time(sg_actor_t actor, double kill_time)
681 {
682   actor->set_kill_time(kill_time);
683 }
684
685 /** Yield the current actor; let the other actors execute first */
686 void sg_actor_yield()
687 {
688   simgrid::s4u::this_actor::yield();
689 }
690
691 void sg_actor_sleep_for(double duration)
692 {
693   simgrid::s4u::this_actor::sleep_for(duration);
694 }
695
696 sg_actor_t sg_actor_attach(const char* name, void* data, sg_host_t host, xbt_dict_t properties)
697 {
698   xbt_assert(host != nullptr, "Invalid parameters: host and code params must not be nullptr");
699   std::unordered_map<std::string, std::string> props;
700   xbt_dict_cursor_t cursor = nullptr;
701   char* key;
702   char* value;
703   xbt_dict_foreach (properties, cursor, key, value)
704     props[key] = value;
705   xbt_dict_free(&properties);
706
707   /* Let's create the process: SIMIX may decide to start it right now, even before returning the flow control to us */
708   smx_actor_t actor = nullptr;
709   try {
710     actor = simgrid::kernel::actor::ActorImpl::attach(name, data, host, &props).get();
711   } catch (simgrid::HostFailureException const&) {
712     xbt_die("Could not attach");
713   }
714
715   simgrid::s4u::this_actor::yield();
716   return actor->ciface();
717 }
718
719 void sg_actor_detach()
720 {
721   simgrid::kernel::actor::ActorImpl::detach();
722 }