Logo AND Algorithmique Numérique Distribuée

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