summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-01 11:55:26 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-01 11:55:26 +0000
commitca9353cc04b5103daec4849b991b56897fcf4ff6 (patch)
treef4cf11901d15a1e14ce44162d0c97e5ea512bc3a /src
parent77030a22f5f037e9e0e4f9efd0943f1d10fc3cc1 (diff)
File to deal with all GH extension stuff.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@163 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-rw-r--r--src/comm/GHExtensions.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/comm/GHExtensions.c b/src/comm/GHExtensions.c
index 0e271d0a..96a0a247 100644
--- a/src/comm/GHExtensions.c
+++ b/src/comm/GHExtensions.c
@@ -11,9 +11,17 @@
static char *rcsid = "$Id$";
-int CCTK_TraverseGHExtensions(tFleshConfig *config,
- int convergence_level,
- cGH *GH)
+int CCTK_TraverseGHExtensions(cGH *GH, const char *when)
{
return 0;
}
+
+int CCTK_RegisterGHExtension(cGH *GH, const char *name)
+{
+ return -1;
+}
+
+int CCTK_RegisterGHExtensionInitialiser(int handle, void (*func)())
+{
+ return -1;
+}