Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
frame a concept of execution, that will become a s4u::Async
[simgrid.git] / src / s4u / s4u_actor.cpp
index 8264fe5..010aff4 100644 (file)
@@ -89,8 +89,8 @@ void s4u::Actor::sleep(double duration) {
 }
 
 e_smx_state_t s4u::Actor::execute(double flops) {
-       smx_synchro_t s = simcall_process_execute(NULL,flops,1.0/*priority*/,0./*bound*/, 0L/*affinity*/);
-    return simcall_process_execution_wait(s);
+       smx_synchro_t s = simcall_execution_start(NULL,flops,1.0/*priority*/,0./*bound*/, 0L/*affinity*/);
+       return simcall_execution_wait(s);
 }
 
 void *s4u::Actor::recv(Mailbox &chan) {