Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SMPI: Kill the global list of senders and receivers
[simgrid.git] / src / smpi / smpi_receiver.c
index ff6d1d8..b81c997 100644 (file)
@@ -25,8 +25,6 @@ int smpi_receiver(int argc, char*argv[])
   request_queue = mydata->pending_recv_request_queue;
   message_queue = smpi_global->received_message_queues[index];
 
   request_queue = mydata->pending_recv_request_queue;
   message_queue = smpi_global->received_message_queues[index];
 
-  smpi_global->receiver_processes[index] = self;
-
   do {
 
     // FIXME: better algorithm, maybe some kind of balanced tree? or a heap?
   do {
 
     // FIXME: better algorithm, maybe some kind of balanced tree? or a heap?