X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/02f1ca13d5f2d2994a81604d6993cdc6ace0e9d9..f063625862eb4dfe006653ce98a4291fb4c1810e:/src/simix/smx_global.cpp diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index 40b1beb727..2662ebaa24 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -426,7 +426,7 @@ void SIMIX_run() * - If a process is added because it's getting killed, its subsequent actions shouldn't matter * - If a process gets added to actors_to_run because one of their blocking action constituting the meat * of a simcall terminates, we're still good. Proof: - * - You are added from SIMIX_simcall_answer() only. When this function is called depends on the resource + * - You are added from ActorImpl::simcall_answer() only. When this function is called depends on the resource * kind (network, cpu, disk, whatever), but the same arguments hold. Let's take communications as an * example. * - For communications, this function is called from SIMIX_comm_finish(). @@ -468,7 +468,7 @@ void SIMIX_run() for (smx_actor_t const& process : simix_global->actors_that_ran) { if (process->simcall.call != SIMCALL_NONE) { - SIMIX_simcall_handle(&process->simcall, 0); + process->simcall_handle(0); } }