summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-05-08 16:17:32 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-05-08 16:17:32 +0000
commit5645fd9b058f0550de5464f9b1255e333d390f21 (patch)
tree93b896b018b30a8404e34ffe088885e6cb290e6d /src/include
parent286c8dbd8d4344f6258a2f47c188a25abf595af3 (diff)
Add I/O timers to Cactus flesh
Add timers for each I/O method in the flesh. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4816 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cctk_IOMethods.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/cctk_IOMethods.h b/src/include/cctk_IOMethods.h
index fc2916cb..1bbf936d 100644
--- a/src/include/cctk_IOMethods.h
+++ b/src/include/cctk_IOMethods.h
@@ -23,6 +23,9 @@ struct IOMethod
int (*OutputVarAs) (const cGH *GH, const char *vname, const char *alias);
int (*TriggerOutput) (const cGH *GH, int vindex);
int (*TimeToOutput) (const cGH *GH, int vindex);
+
+ /* Timer data */
+ int timer_handle;
};
#define CCTK_RegisterIOMethod(a) CCTKi_RegisterIOMethod (CCTK_THORNSTRING, a)