X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96f0842b8bd315d5ac3df5ffb91bbf321a389d24..92cd12d0b61dd5a17500ef7d38f7b95a80301037:/include/simgrid/simix/blocking_simcall.hpp diff --git a/include/simgrid/simix/blocking_simcall.hpp b/include/simgrid/simix/blocking_simcall.hpp index 43565d3e62..c8ba0f746a 100644 --- a/include/simgrid/simix/blocking_simcall.hpp +++ b/include/simgrid/simix/blocking_simcall.hpp @@ -149,7 +149,7 @@ template auto kernel_async(F code) -> Future typedef decltype(code().get()) T; // Execute the code in the kernel and get the kernel future: - simgrid::kernel::Future future = simgrid::simix::simcall(std::move(code)); + simgrid::kernel::Future future = simgrid::kernel::actor::simcall(std::move(code)); // Wrap the kernel future in a actor future: return simgrid::simix::Future(std::move(future));