Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Ensure we don't post a too big receive here, because this could lead to problems...
[simgrid.git] / src / smpi / smpi_base.c
index 273ce1e..8bb78e1 100644 (file)
@@ -320,6 +320,7 @@ void smpi_mpi_start(MPI_Request request)
   if(request->flags & PREPARED)request->flags &= ~PREPARED;
   if(request->flags & RECV) {
     print_request("New recv", request);
+    //FIXME: if receive is posted with a large size, but send is smaller, mailboxes may not match !
     if (request->size < sg_cfg_get_int("smpi/async_small_thres"))
       mailbox = smpi_process_mailbox_small();
     else