X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c67e5b51697f2607390d1f2362e099b7683b5169..d1fc2db12e159461fa3c6a1fb60a1f8e395e91f8:/src/mc/remote/Client.cpp diff --git a/src/mc/remote/Client.cpp b/src/mc/remote/Client.cpp index 4e774042b2..06916a44e0 100644 --- a/src/mc/remote/Client.cpp +++ b/src/mc/remote/Client.cpp @@ -97,7 +97,7 @@ void Client::handle_simcall(s_mc_message_simcall_handle_t* message) smx_actor_t process = SIMIX_process_from_PID(message->pid); if (not process) xbt_die("Invalid pid %lu", (unsigned long)message->pid); - SIMIX_simcall_handle(&process->simcall, message->value); + process->simcall_handle(message->value); if (channel_.send(MC_MESSAGE_WAITING)) xbt_die("Could not send MESSAGE_WAITING to model-checker"); }