X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b1cf96349b22334a1a01088f6c2c939c87e063cb..4e73c03c087fd07184d9ed45224f7fbad24e686e:/src/msg/msg_gos.cpp diff --git a/src/msg/msg_gos.cpp b/src/msg/msg_gos.cpp index 81ae5ad2c9..422ba8d58a 100644 --- a/src/msg/msg_gos.cpp +++ b/src/msg/msg_gos.cpp @@ -682,7 +682,7 @@ void MSG_comm_copy_data_from_SIMIX(smx_activity_t synchro, void* buff, size_t bu // notify the user callback if any if (msg_global->task_copy_callback) { msg_task_t task = static_cast(buff); - msg_global->task_copy_callback(task, comm->src_proc->ciface(), comm->dst_proc->ciface()); + msg_global->task_copy_callback(task, comm->src_actor_->ciface(), comm->dst_actor_->ciface()); } } @@ -833,7 +833,7 @@ int MSG_task_listen_from(const char *alias) if (not comm) return -1; - return MSG_process_get_PID(static_cast(comm->src_buff)->simdata->sender); + return MSG_process_get_PID(static_cast(comm->src_buff_)->simdata->sender); } /**