X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2dba4579bf4c7f7e8cde2b36ff308645a3cc891b..6dfbeafc01f45baadb4214d15cd0c703887d743e:/src/smpi/smpi_mpi.cpp?ds=sidebyside diff --git a/src/smpi/smpi_mpi.cpp b/src/smpi/smpi_mpi.cpp index 35ae81d2b1..9f344ee5fa 100644 --- a/src/smpi/smpi_mpi.cpp +++ b/src/smpi/smpi_mpi.cpp @@ -1,5 +1,4 @@ -/* Copyright ,(c) 2007-2017. The SimGrid Team. - * All rights reserved.*/ +/* Copyright ,(c) 2007-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license ,(GNU LGPL) which comes with this package. */ @@ -9,10 +8,11 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_mpi, smpi, "Logging specific to SMPI ,(mpi)"); -#define NOT_YET_IMPLEMENTED { \ -XBT_WARN("Not yet implemented : %s. Please contact the Simgrid team if support is needed", __FUNCTION__); \ -return MPI_SUCCESS; \ -} +#define NOT_YET_IMPLEMENTED \ + { \ + XBT_WARN("Not yet implemented : %s. Please contact the SimGrid team if support is needed", __FUNCTION__); \ + return MPI_SUCCESS; \ + } #define WRAPPED_PMPI_CALL(type,name,args,args2) \ type name args { \ @@ -238,7 +238,7 @@ WRAPPED_PMPI_CALL(MPI_Win, MPI_Win_f2c,(MPI_Fint win),(win)) /* Unimplemented Calls - both PMPI and MPI calls are generated. When implementing, please move ahead, swap UNIMPLEMENTED_WRAPPED_PMPI_CALL for WRAPPED_PMPI_CALL, - and implement PMPI version of the function in smpi_pmpi.cpp file + and implement PMPI version of the function in smpi_pmpi.cpp file */