From: Augustin Degomme Date: Wed, 18 Sep 2013 09:26:23 +0000 (+0200) Subject: some requests were not tagged correctly X-Git-Tag: v3_9_90~114 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4cbf7dd24696d1c60ef444fba3d58060d7e57d80?hp=94e61a6926e7eb193363e147ff22206f77425abe some requests were not tagged correctly --- diff --git a/src/smpi/smpi_base.c b/src/smpi/smpi_base.c index 8bb78e14f8..517cb9cd5d 100644 --- a/src/smpi/smpi_base.c +++ b/src/smpi/smpi_base.c @@ -444,7 +444,7 @@ MPI_Request smpi_isend_init(void *buf, int count, MPI_Datatype datatype, { MPI_Request request = build_request(buf==MPI_BOTTOM ? (void*)0 : buf , count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag, - comm, NON_PERSISTENT | SEND | PREPARED); + comm, NON_PERSISTENT | ISEND | SEND | PREPARED); return request; }