Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Host::exec_async was an init(), fix that.
[simgrid.git] / src / s4u / s4u_Actor.cpp
index 3c4b899..46eff09 100644 (file)
@@ -404,7 +404,7 @@ ExecPtr exec_init(const std::vector<s4u::Host*>& hosts, const std::vector<double
 ExecPtr exec_async(double flops)
 {
   ExecPtr res = exec_init(flops);
-  res->start();
+  res->vetoable_start();
   return res;
 }