]> git.treefish.org Git - phys/latlib.git/blobdiff - o815/o815.cpp
Removed mpi.h from o815 header.
[phys/latlib.git] / o815 / o815.cpp
index 3fe43c8193d675fb0ec54c234193782ed4056dcb..cc72a149b5073edeea5a0f8498a73b7d18ab8373 100644 (file)
@@ -3,6 +3,8 @@
 #include <sstream>
 #include <iomanip>
 
+#include <mpi.h>
+
 #include "latlib/progress.h"
 
 using namespace std;
@@ -114,7 +116,7 @@ void o815::postParaInit() {
       MPI_Send(&timestamp, 1, MPI_LONG, idest, 123, MPI_COMM_WORLD);
   }
   else if(rank>0)
-    MPI_Recv(&timestamp, 1, MPI_LONG, 0, 123, MPI_COMM_WORLD, &mpiStatus);
+    MPI_Recv(&timestamp, 1, MPI_LONG, 0, 123, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
   
   out = new writeout(comargs.outdir, programid+headMaster(), rank, numprocs, timestamp);
 }