aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authortradke <tradke@38c3d835-c875-442e-b0fe-21c19ce1d001>1999-10-05 01:24:27 +0000
committertradke <tradke@38c3d835-c875-442e-b0fe-21c19ce1d001>1999-10-05 01:24:27 +0000
commit3aa41187b549ff9a792d673e86efe5220848d73f (patch)
tree0bdc27f2b94a7dfd29cf4d0c25c2cd819fd833a2 /schedule.ccl
parent8a113f1371d777ca62b6c690e2f44bbebebd79c0 (diff)
Added Jonghyun's IOPanda thorn.
Tested on O2K, needs porting/testing on other architectures. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOPanda/trunk@2 38c3d835-c875-442e-b0fe-21c19ce1d001
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl36
1 files changed, 36 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
new file mode 100644
index 0000000..6329547
--- /dev/null
+++ b/schedule.ccl
@@ -0,0 +1,36 @@
+# Schedule definitions for thorn IOPanda
+# $Header$
+
+########################################################################
+### register IOPanda routines
+########################################################################
+schedule IOPanda_Startup at STARTUP after IOUtil_Startup
+{
+ LANG:C
+} "IOPanda startup routine"
+
+schedule IOPanda_Finalize at CCTK_TERMINATE
+{
+ LANG:C
+} "IOPanda finalize routine"
+
+########################################################################
+### register checkpointing routines
+########################################################################
+#if (checkpoint && checkpoint_ID) {
+# schedule IOPanda_InitialDataDumpGH at CCTK_CPINITIAL {
+# LANG:C
+# } "Initial data checkpoint routine"
+#}
+
+#if (checkpoint && checkpoint_every > 0) {
+# schedule IOPanda_ConditionallyDumpGH at CCTK_CHECKPOINT {
+# LANG:C
+# } "Regular checkpoint routine"
+#}
+
+#if (checkpoint) {
+# schedule IOPanda_TerminationDumpGH at CCTK_TERMINATE {
+# LANG:C
+# } "Termination checkpoint routine"
+#}