diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/h5diff.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index 39be45b..bfeb35b 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -892,3 +892,27 @@ out: return nfound; } + + +#ifdef H5_HAVE_PARALLEL +/*------------------------------------------------------------------------- + * Function: phdiff_dismiss_workers + * + * Purpose: tell all workers to end. + * + * Return: none + * + * Programmer: Albert Cheng + * + * Date: Feb 6, 2005 + * + *------------------------------------------------------------------------- + */ +void phdiff_dismiss_workers(void) +{ + int i; + + for(i=1; i<g_nTasks; i++) + MPI_Send(NULL, 0, MPI_BYTE, i, MPI_TAG_END, MPI_COMM_WORLD); +} +#endif |