aboutsummaryrefslogtreecommitdiff
path: root/src/PughUtils.c
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/PughUtils.c
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/PughUtils.c')
-rw-r--r--src/PughUtils.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/PughUtils.c b/src/PughUtils.c
index ea1b55e..c14e505 100644
--- a/src/PughUtils.c
+++ b/src/PughUtils.c
@@ -1,5 +1,5 @@
/*@@
- @file pugh_utils.c
+ @file PUGH_utils.c
@date Sunday 12th September 1999
@author Gabrielle Allen
@desc
@@ -17,10 +17,10 @@
static char *rcsid = "$Header$";
-CCTK_FILEVERSION (CactusPUGH_PUGH_PughUtils_c);
+CCTK_FILEVERSION(CactusPUGH_PUGH_PughUtils_c)
/*@@
- @routine pugh_Report
+ @routine PUGH_Report
@date Sunday 12 September 1999
@author Gabrielle Allen
@desc
@@ -34,17 +34,18 @@ CCTK_FILEVERSION (CactusPUGH_PUGH_PughUtils_c);
@@*/
-void pugh_Report(CCTK_CARGUMENTS)
+void PUGH_Report(CCTK_CARGUMENTS)
{
DECLARE_CCTK_PARAMETERS
pGH *pughGH;
char *message;
+
#ifdef CCTK_MPI
int i;
#endif
- pughGH = pugh_pGH(cctkGH);
+ pughGH = PUGH_pGH(cctkGH);
message = malloc(1024*sizeof(char));
#ifdef CCTK_MPI
@@ -134,7 +135,7 @@ void pugh_Report(CCTK_CARGUMENTS)
}
else
{
- CCTK_WARN(4,"Only 1D, 2D, and 3D supported in pugh_Report");
+ CCTK_WARN(4,"Only 1D, 2D, and 3D supported in PUGH_Report");
}
#ifdef CCTK_MPI
@@ -150,7 +151,7 @@ void pugh_Report(CCTK_CARGUMENTS)
}
/*@@
- @routine pugh_pGH
+ @routine PUGH_pGH
@date Wed Feb 2 13:27:41 2000
@author Tom Goodale
@desc
@@ -165,7 +166,7 @@ void pugh_Report(CCTK_CARGUMENTS)
@endhistory
@@*/
-pGH *pugh_pGH(cGH *GH)
+pGH *PUGH_pGH(cGH *GH)
{
pGH *pughGH;