diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-02-18 21:37:25 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-02-18 21:37:25 (GMT) |
commit | 32c030ad2b2451d6d71c029f1915c5149434b034 (patch) | |
tree | f8d1755c6df05de2ce48fc9ce91cef49ab1f1424 /tools | |
parent | 79d94c7bb74d28884b3f666a5922a317ef907398 (diff) | |
download | hdf5-32c030ad2b2451d6d71c029f1915c5149434b034.zip hdf5-32c030ad2b2451d6d71c029f1915c5149434b034.tar.gz hdf5-32c030ad2b2451d6d71c029f1915c5149434b034.tar.bz2 |
[svn-r26223] add another H5close before finalize so with-mpe does not fail.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perform/perf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perform/perf.c b/tools/perform/perf.c index 7d329f0..58db6cc 100644 --- a/tools/perform/perf.c +++ b/tools/perform/perf.c @@ -390,7 +390,10 @@ die_jar_jar_die: free(tmp); if (opt_correct) free(tmp2); - + + /* close HDF5 library */ + H5close(); + MPI_Finalize(); return(0); |