From b660c7d331751095c925d8da713627fac1eb695f Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Mon, 23 Jun 2014 17:50:26 +0200 Subject: [PATCH 1/1] remove now useless comments --- src/smpi/smpi_rma.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/smpi/smpi_rma.c b/src/smpi/smpi_rma.c index 9ff12c8afe..378697e387 100644 --- a/src/smpi/smpi_rma.c +++ b/src/smpi/smpi_rma.c @@ -11,10 +11,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_rma, smpi, "Logging specific to SMPI (RMA o #define RMA_TAG -1234 -/* FIXME:using a global array of MPI_Win simplifies the way to exchange pointers and info, - * but it breaks distributed simulation - */ - xbt_bar_t creation_bar = NULL; typedef struct s_smpi_mpi_win{ @@ -143,9 +139,6 @@ int smpi_mpi_put( void *origin_addr, int origin_count, MPI_Datatype origin_datat //push request to sender's win xbt_dynar_push_as(win->requests, MPI_Request, sreq); } - //perform actual copy - /*smpi_datatype_copy(origin_addr, origin_count, origin_datatype, - recv_addr, target_count, target_datatype);*/ return MPI_SUCCESS; } @@ -179,10 +172,6 @@ int smpi_mpi_get( void *origin_addr, int origin_count, MPI_Datatype origin_datat //push request to sender's win xbt_dynar_push_as(win->requests, MPI_Request, rreq); } - //perform actual copy - /*smpi_datatype_copy(send_addr, target_count, target_datatype, - origin_addr, origin_count, origin_datatype);*/ - return MPI_SUCCESS; } -- 2.20.1