Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
adapt to the new simcall_comm_recv() prototype
[simgrid.git] / src / s4u / s4u_actor.cpp
index 74264b5..879d21e 100644 (file)
@@ -85,7 +85,7 @@ void s4u::Actor::execute(double flops) {
 char *s4u::Actor::recvstr(Mailbox &chan) {
        void *res=NULL;
 
-       Comm c = Comm::recv_init(chan);
+       Comm c = Comm::recv_init(this, chan);
        c.setDstData(&res,sizeof(res));
        c.wait();