aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authorjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-10-30 03:29:03 +0000
committerjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-10-30 03:29:03 +0000
commite6d057402882838b675d5b2afbe56ea02ffbba60 (patch)
treedc7f97c47ba8b6642c7e53b73338db362f96d96b /src/Startup.c
parent0df7382c160c68a507a22457d81f62bb66f3df5f (diff)
Forgot to take PUGH into account for steering.
So now it properly propagates steering information to *ALL* processes when running in MPI mode. Also added parameters so that it is fully compatable in terms of parameters with the old isosurfacer (still testing this though). git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@15 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 987b0e0..75635c4 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -19,15 +19,14 @@
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"
-int Iso_SetupServer(int dataport, int clientport, int queue_size, int hunt);
+/*int Iso_SetupServer(int dataport, int clientport, int queue_size, int hunt);
+Iso_SetupServer(7051, 7050, 5, 1); needs to move into InitGH */
int IsoSurfacer_Startup(void)
{
int IOMethod;
int IsoSurfacer_GHExtension;
- Iso_SetupServer(7051, 7050, 5, 1);
-
IsoSurfacer_GHExtension = CCTK_RegisterGHExtension ("IsoSurfacer");
CCTK_RegisterGHExtensionSetupGH (IsoSurfacer_GHExtension,IsoSurfacer_SetupGH);
CCTK_RegisterGHExtensionInitGH (IsoSurfacer_GHExtension, IsoSurfacer_InitGH);