summaryrefslogtreecommitdiff
path: root/src/comm/CactusDefaultComm.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-23 16:55:54 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-23 16:55:54 +0000
commit85aea6dcfa2bc5eeb2bca4601158f5ef70a400eb (patch)
tree5be270d8ce171a8e9ea0fa60a1c5b815342b9e57 /src/comm/CactusDefaultComm.c
parent47aba9fbf561e62304273c4ad80094060b8a70ff (diff)
Added GetMyProc and GetnProcs
git-svn-id: http://svn.cactuscode.org/flesh/trunk@331 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/comm/CactusDefaultComm.c')
-rw-r--r--src/comm/CactusDefaultComm.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/comm/CactusDefaultComm.c b/src/comm/CactusDefaultComm.c
index 67ffb693..1201cc76 100644
--- a/src/comm/CactusDefaultComm.c
+++ b/src/comm/CactusDefaultComm.c
@@ -129,3 +129,43 @@ cGH *CactusDefaultSetupGH(tFleshConfig *config, int convergence_level)
return retval;
}
+
+ /*@@
+ @routine CactusDefaultGetMyProc
+ @date Tue Jan 23 1999
+ @author Gabrielle Allen
+ @desc
+ Default cactus GetMyProc routine.
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+
+int CactusDefaultGetMyProc(cGH *GH)
+{
+ return 0;
+}
+
+ /*@@
+ @routine CactusDefaultGetnProcs
+ @date Tue Jan 23 1999
+ @author Gabrielle Allen
+ @desc
+ Default cactus GetnProcs routine.
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+
+int CactusDefaultGetnProcs(cGH *GH)
+{
+ return 1;
+}