aboutsummaryrefslogtreecommitdiff
path: root/src/pugh_Comm.h
diff options
context:
space:
mode:
authortradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-10-31 12:05:01 +0000
committertradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-10-31 12:05:01 +0000
commit3c2d7c8ae5f322d135e3cf344e8d07af107eb95b (patch)
tree6a53588b10622db65b1f336b1f4c080f92ce6dd7 /src/pugh_Comm.h
parentda1336fd54a0683c9e0bffd309d2df44ea753afe (diff)
PUGH overloadables for CCTK_MyProc(), CCTK_nProcs(), CCTK_Barrier() take
a 'const cGH *' argument now. Also fixed a couple of other warnings. Untabified sources. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@357 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/pugh_Comm.h')
-rw-r--r--src/pugh_Comm.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/pugh_Comm.h b/src/pugh_Comm.h
index 899753f..4a67405 100644
--- a/src/pugh_Comm.h
+++ b/src/pugh_Comm.h
@@ -24,7 +24,7 @@ int PUGH_DisableGroupStorage(cGH *GH, const char *group);
int PUGH_EnableGroupComm(cGH *GH, const char *group);
int PUGH_DisableGroupComm(cGH *GH, const char *group);
-int PUGH_Barrier(cGH *GH);
+int PUGH_Barrier(const cGH *GH);
int PUGH_Reduce(cGH *GH,
const char *operation,
int n_infields,
@@ -42,13 +42,6 @@ int PUGH_Interp(cGH *GH,
int type,
...);
-int PUGH_ParallelInit(cGH *GH);
-int PUGH_Exit(cGH *GH, int retval);
-int PUGH_Abort(cGH *GH, int retval);
-
-int PUGH_MyProc(cGH *GH);
-int PUGH_nProcs(cGH *GH);
-
const int *PUGH_ArrayGroupSize(cGH *GH, int dir, int vindex, const char *groupname);
int PUGH_QueryGroupStorage(cGH *GH, int group, const char *groupname);