Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tracing a sub-set of point-to-point mpi functions
[simgrid.git] / src / smpi / smpi_base.c
index dc608cd..ed9620b 100644 (file)
@@ -58,6 +58,10 @@ static MPI_Request build_request(void* buf, int count, MPI_Datatype datatype, in
   request->complete = 0;
   request->match = MPI_REQUEST_NULL;
   request->flags = flags;
+#ifdef HAVE_TRACING
+  request->send = 0;
+  request->recv = 0;
+#endif
   return request;
 }