summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-03-30 17:00:57 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-03-30 17:00:57 (GMT)
commitdd51e474f0a8c34b6cd216b4ce9639f098450b71 (patch)
tree2c09de780697606f70c53af2fe0986c8499c9aec /testpar
parent7bd84c9fb8612accf45ed16a1d01b4ab476f1dd4 (diff)
downloadhdf5-dd51e474f0a8c34b6cd216b4ce9639f098450b71.zip
hdf5-dd51e474f0a8c34b6cd216b4ce9639f098450b71.tar.gz
hdf5-dd51e474f0a8c34b6cd216b4ce9639f098450b71.tar.bz2
[svn-r331] Moved its code into testphdf.c. Easier that way.
Diffstat (limited to 'testpar')
-rw-r--r--testpar/phdf5sup.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/testpar/phdf5sup.c b/testpar/phdf5sup.c
deleted file mode 100644
index e09c403..0000000
--- a/testpar/phdf5sup.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/* debugging tools */
-#define MESG(x)\
- printf("%s\n", x);\
-
-#ifdef HAVE_PARALLEL
-#define MPI_BANNER(mesg)\
- {printf("================================\n");\
- printf("Proc %d: ", myid); \
- printf("*** %s\n", mesg);\
- printf("================================\n");}
-#else
-#define MPI_BANNER(mesg)\
- {printf("================================\n");\
- printf("*** %s\n", mesg);\
- printf("================================\n");}
-#endif
-
-#ifdef HAVE_PARALLEL
-#define SYNC(comm)\
- {MPI_BANNER("doing a SYNC"); MPI_Barrier(comm); MPI_BANNER("SYNC DONE");}
-
-/* pause the process for a moment to allow debugger to attach if desired. */
-/* Will pause more if greenlight file is not persent but will eventually */
-/* continue. */
-#include <sys/types.h>
-#include <sys/stat.h>
-void pause_proc(MPI_Comm comm, int myid, char* processor_name, int namelen,
- int argc, char **argv)
-{
-
- int pid;
- struct stat statbuf;
- char greenlight[] = "go";
- int maxloop = 10;
- int time_int = 10;
-
- /* check if an pause interval option is given */
- if (--argc > 0 && isdigit(*++argv))
- time_int = atoi(*argv);
- pid = getpid();
- printf("Proc %d (%*s): pid = %d\n",
- myid, namelen, processor_name, pid);
-
- if (myid == 0)
- while ((stat(greenlight, &statbuf) == -1) && maxloop-- > 0){
- printf("waiting(%ds) for file %s ...", time_int, greenlight);
- fflush(stdout);
- sleep(time_int);
- }
- MPI_Barrier(comm);
-}
-#endif /*HAVE_PARALLEL*/
-
-