aboutsummaryrefslogtreecommitdiff
path: root/src/pugh_Comm.h
diff options
context:
space:
mode:
authorgoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-04-19 23:13:58 +0000
committergoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-04-19 23:13:58 +0000
commit56711ab746cd71ac2b24db24b0115ea6b14ec2c3 (patch)
treecd47799c8d3cf56646074292effa762757571e73 /src/pugh_Comm.h
parent6631ef8726eb678e1c841c41c5b821f59a91292f (diff)
Changed names of PUGH functions to be uniform. Now all PUGH functions
should begin with PUGH. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@211 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/pugh_Comm.h')
-rw-r--r--src/pugh_Comm.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/pugh_Comm.h b/src/pugh_Comm.h
index 2e4c6b7..4a81d32 100644
--- a/src/pugh_Comm.h
+++ b/src/pugh_Comm.h
@@ -17,15 +17,15 @@ extern "C"
#endif
/* Overloaded functions. */
-int pugh_SyncGroup(cGH *GH, const char *group);
-int pugh_EnableGroupStorage(cGH *GH, const char *group);
-int pugh_DisableGroupStorage(cGH *GH, const char *group);
+int PUGH_SyncGroup(cGH *GH, const char *group);
+int PUGH_EnableGroupStorage(cGH *GH, const char *group);
+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_EnableGroupComm(cGH *GH, const char *group);
+int PUGH_DisableGroupComm(cGH *GH, const char *group);
-int pugh_Barrier(cGH *GH);
-int pugh_Reduce(cGH *GH,
+int PUGH_Barrier(cGH *GH);
+int PUGH_Reduce(cGH *GH,
const char *operation,
int n_infields,
int n_outfields,
@@ -33,7 +33,7 @@ int pugh_Reduce(cGH *GH,
void **outarray,
...);
-int pugh_Interp(cGH *GH,
+int PUGH_Interp(cGH *GH,
const char *operation,
int n_coords,
int n_infields,
@@ -42,15 +42,15 @@ int pugh_Interp(cGH *GH,
int type,
...);
-int pugh_ParallelInit(cGH *GH);
-int pugh_Exit(int retval, cGH *GH);
-int pugh_Abort(cGH *GH);
+int PUGH_ParallelInit(cGH *GH);
+int PUGH_Exit(int retval, cGH *GH);
+int PUGH_Abort(cGH *GH);
-int pugh_MyProc(cGH *GH);
-int pugh_nProcs(cGH *GH);
+int PUGH_MyProc(cGH *GH);
+int PUGH_nProcs(cGH *GH);
-const int *pugh_ArrayGroupSize(cGH *GH, int dir, int index, const char *groupname);
-int pugh_QueryGroupStorage(cGH *GH, int group, const char *groupname);
+const int *PUGH_ArrayGroupSize(cGH *GH, int dir, int index, const char *groupname);
+int PUGH_QueryGroupStorage(cGH *GH, int group, const char *groupname);
#ifdef _cplusplus
}