summaryrefslogtreecommitdiff
path: root/src/comm/CactusDefaultComm.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1998-09-29 15:13:59 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1998-09-29 15:13:59 +0000
commitf33a0851faf673b9da38fd49e6584604abb2e177 (patch)
tree721c000d391d87781635acfbcb5de125d30bd888 /src/comm/CactusDefaultComm.c
parentd0ca16ca3947257db76a8ed3b217aeed807bd54e (diff)
Registration and default files.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@14 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/comm/CactusDefaultComm.c')
-rw-r--r--src/comm/CactusDefaultComm.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/comm/CactusDefaultComm.c b/src/comm/CactusDefaultComm.c
new file mode 100644
index 00000000..08f6e633
--- /dev/null
+++ b/src/comm/CactusDefaultComm.c
@@ -0,0 +1,60 @@
+ /*@@
+ @file CactusDefaultComm.c
+ @date Tue Sep 29 15:06:22 1998
+ @author Tom Goodale
+ @desc
+ Default communication routines.
+ @enddesc
+ @@*/
+
+
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "flesh.h"
+#include "CactusMainDefaults.h"
+
+static char *rcsid = "$Id$";
+
+
+int CactusDefaultSetupGH(cGH *GH)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+
+int CactusDefaultSetupGF(cGH *GH, cGF *GF)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+int CactusDefaultSyncAllFuncs(cGH *GH)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+int CactusDefaultSyncGroupFuncs(cGH *GH, const char *group)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+int CactusDefaultSyncOneFunc(cGH *GH, cGF *GF)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+int CactusDefaultParallelInit(tFleshConfig *config)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+int CactusDefaultParallelFinalise(tFleshConfig *config)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+
+int CactusDefaultReduce(cGH *GH, cGF *GF, int operation, void *result)
+{
+ printf("I'm at line %d of file %s\n", __LINE__, __FILE__);
+}
+