aboutsummaryrefslogtreecommitdiff
path: root/src/include/pGV.h
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-01-25 09:26:19 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-01-25 09:26:19 +0000
commitb5652dfba0c50916aaf8ebd9071f0a88691d3b08 (patch)
treef4c3689a1baea874de4a23764c3509a840cafe02 /src/include/pGV.h
parent889886b91f72873111c6c4501e9c39c9f8f5d49f (diff)
Arrays (no communication yet)
General tidying git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@153 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/include/pGV.h')
-rw-r--r--src/include/pGV.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/pGV.h b/src/include/pGV.h
index 51bfa03..e8dc3e7 100644
--- a/src/include/pGV.h
+++ b/src/include/pGV.h
@@ -65,16 +65,16 @@ typedef struct PGExtras
typedef struct PGA
{
char *name; /* The name of the grid function */
- int id; /* My ID number in my GH parent. */
+ int id; /* My ID number in my GH parent. */
void *padddata; /* Storage for the data. */
void *data; /* See the note above. */
/* buffer_sz[2*dim] */
- int *buffer_sz; /* Size of the face ghost zones */
+ int *buffer_sz; /* Size of the face ghost zones */
void **send_buffer; /* Storage for buffered Comm if */
void **recv_buffer; /* we don't use derived types */
int commflag; /* What is the comm flag set to? */
/* do_comm[2*dim] */
- int *docomm; /* Do we do comm or not? */
+ int *docomm; /* Do we do comm or not? */
int storage; /* Do we have storage or not? */
int stagger; /* Only Vertex Centered now... */