summaryrefslogtreecommitdiff
path: root/src/include/cctk_Schedule.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-03 19:56:54 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-03 19:56:54 +0000
commit9bd9976896f8654961cabddace920b3a819c6005 (patch)
tree1300e389aa6f11dabf4d42edc5c65d09ef83b268 /src/include/cctk_Schedule.h
parentf14f041c5b81ccf0e1aedbd5c24028afe644ae81 (diff)
Adding the trigger groups for a routine to the cFunctionData structure.
This field should be considered volatile, it may not remain on this structure git-svn-id: http://svn.cactuscode.org/flesh/trunk@2448 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Schedule.h')
-rw-r--r--src/include/cctk_Schedule.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/include/cctk_Schedule.h b/src/include/cctk_Schedule.h
index ca71d53a..e291aa5c 100644
--- a/src/include/cctk_Schedule.h
+++ b/src/include/cctk_Schedule.h
@@ -19,10 +19,6 @@ typedef struct
{
cLanguage language;
- char *where;
-
- char *routine;
-
int (*FortranCaller)(cGH *, void *);
cFunctionType type;
@@ -35,6 +31,13 @@ typedef struct
int global;
+ /* The last items should be considered volatile and may
+ not stay here */
+
+ int n_TriggerGroups;
+ int *TriggerGroups;
+ char *where;
+ char *routine;
char *thorn;
} cFunctionData;