Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill a meaningless function: this_actor::resume()
[simgrid.git] / src / s4u / s4u_Actor.cpp
index 5b711b5..9069f5e 100644 (file)
@@ -427,13 +427,6 @@ void suspend()
   kernel::actor::simcall_blocking<void>([self] { self->suspend(); });
 }
 
-void resume()
-{
-  kernel::actor::ActorImpl* self = simgrid::kernel::actor::ActorImpl::self();
-  kernel::actor::simcall([self] { self->resume(); });
-  Actor::on_resume(*self->ciface());
-}
-
 void exit()
 {
   kernel::actor::ActorImpl* self = simgrid::kernel::actor::ActorImpl::self();