From 85a487f05849152aa899e36201238377c6535bfa Mon Sep 17 00:00:00 2001
From: Christian Godenschwager <christian.godenschwager@fau.de>
Date: Thu, 13 Jul 2017 15:39:43 +0200
Subject: [PATCH] Added MPI_Alltoall to MPI wrapper

---
 src/core/mpi/MPIWrapper.h | 1 +
 1 file changed, 1 insertion(+)
 mode change 100755 => 100644 src/core/mpi/MPIWrapper.h

diff --git a/src/core/mpi/MPIWrapper.h b/src/core/mpi/MPIWrapper.h
old mode 100755
new mode 100644
index 5da7a429d..f97cb06b1
--- a/src/core/mpi/MPIWrapper.h
+++ b/src/core/mpi/MPIWrapper.h
@@ -236,6 +236,7 @@ inline int MPI_Allgather ( void*, int, MPI_Datatype, void*, int, MPI_Datatype, M
 inline int MPI_Gather    ( void*, int, MPI_Datatype, void*, int, MPI_Datatype, int, MPI_Comm )  { WALBERLA_MPI_FUNCTION_ERROR }
 inline int MPI_Allgatherv( void*, int, MPI_Datatype, void*, int*, int*, MPI_Datatype, MPI_Comm ) { WALBERLA_MPI_FUNCTION_ERROR }
 inline int MPI_Gatherv   ( void*, int, MPI_Datatype, void*, int*, int*, MPI_Datatype, int, MPI_Comm ) { WALBERLA_MPI_FUNCTION_ERROR }
+inline int MPI_Alltoall  ( void*, int, MPI_Datatype, void*, int, MPI_Datatype, MPI_Comm ) { WALBERLA_MPI_FUNCTION_ERROR }
 
 inline int MPI_Type_contiguous( int, MPI_Datatype, MPI_Datatype* ) { WALBERLA_MPI_FUNCTION_ERROR }
 inline int MPI_Type_create_subarray( int, const int*, const int*, const int*, int, MPI_Datatype, MPI_Datatype* ) { WALBERLA_MPI_FUNCTION_ERROR }
-- 
GitLab