aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-05-10 17:11:07 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-05-10 17:11:07 +0000
commit643e8338f91dc02e234a927bc5936176a2fd1e87 (patch)
treed7ff85bdf8f2d3d75c9ca403b7b54c57bb95bfc6
parentc5e5d36cbc2161dde3c99b51efdf44d3bb1c4efc (diff)
Compiler warnings
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@325 b61c5cb5-eaca-4651-9a7a-d64986f99364
-rw-r--r--src/FinishReceiveGA.c2
-rw-r--r--src/PostReceiveGA.c2
-rw-r--r--src/PostSendGA.c2
-rw-r--r--src/include/pugh.h12
4 files changed, 17 insertions, 1 deletions
diff --git a/src/FinishReceiveGA.c b/src/FinishReceiveGA.c
index 68834f7..2392d92 100644
--- a/src/FinishReceiveGA.c
+++ b/src/FinishReceiveGA.c
@@ -22,6 +22,8 @@ CCTK_FILEVERSION(CactusPUGH_PUGH_FinishReceiveGA_c)
#ifdef CCTK_MPI
+void FinishReceiveGA(pGH *pughGH, int dir, pComm *comm);
+
/*@@
@routine FinishReceiveGA
@date Thu Apr 3 11:38:07 1997
diff --git a/src/PostReceiveGA.c b/src/PostReceiveGA.c
index 9e0b10b..ef856a2 100644
--- a/src/PostReceiveGA.c
+++ b/src/PostReceiveGA.c
@@ -23,6 +23,8 @@ CCTK_FILEVERSION(CactusPUGH_PUGH_PostReceiveGA_c)
#ifdef CCTK_MPI
+void PostReceiveGA(pGH *pughGH, int dir, pComm *comm);
+
/*@@
@routine PostReceiveGA
@date Thu Apr 3 12:10:46 1997
diff --git a/src/PostSendGA.c b/src/PostSendGA.c
index 59e7a2a..8f66bf6 100644
--- a/src/PostSendGA.c
+++ b/src/PostSendGA.c
@@ -22,9 +22,9 @@ CCTK_FILEVERSION(CactusPUGH_PUGH_PostSendGA_c)
/*#define DEBUG_PUGH*/
-
#ifdef CCTK_MPI
+void PostSendGA(pGH *pughGH, int dir, pComm *comm);
/*@@
@routine PostSendGA
diff --git a/src/include/pugh.h b/src/include/pugh.h
index 63278f6..17be0da 100644
--- a/src/include/pugh.h
+++ b/src/include/pugh.h
@@ -129,6 +129,18 @@ int PUGH_GetBounds(int dim,
int *nprocs,
int *nsize);
+int PUGH_Terminate (cGH *GH);
+
+int PUGH_ParallelInit(cGH *GH);
+
+int PUGH_Abort(cGH *GH, int retval);
+
+int PUGH_MyProc(cGH *GH);
+
+int PUGH_nProcs(cGH *GH);
+
+int PUGH_Exit(cGH *GH, int retval);
+
#ifdef CCTK_MPI
MPI_Datatype PUGH_MPIDataType (pGH *pughGH, int cctk_type);
#endif