diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-25 20:16:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-25 20:16:40 (GMT) |
commit | a4329aaa478d76dc954216b86c74539861aedf38 (patch) | |
tree | 0d005e1ba2c3c78450187bd74c146a0d329032c6 /tools/lib/h5tools.c | |
parent | ab6656c52c8186fc9bca911f7dfb4df967b26817 (diff) | |
download | hdf5-a4329aaa478d76dc954216b86c74539861aedf38.zip hdf5-a4329aaa478d76dc954216b86c74539861aedf38.tar.gz hdf5-a4329aaa478d76dc954216b86c74539861aedf38.tar.bz2 |
[svn-r11297] Purpose:
Code cleanup & speedup
Description:
Refactor h5dump & related code to be considerably cleaner & faster for
files with large #'s of objects.
Platforms tested:
FreeBS 4.11 (sleipnir)
Linux 2.4
Diffstat (limited to 'tools/lib/h5tools.c')
-rw-r--r-- | tools/lib/h5tools.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c index b9dd89a..0eba02b 100644 --- a/tools/lib/h5tools.c +++ b/tools/lib/h5tools.c @@ -24,9 +24,9 @@ #include <stdlib.h> #include "h5tools.h" +#include "h5tools_ref.h" #include "h5tools_str.h" #include "h5tools_utils.h" -#include "hdf5.h" #include "H5private.h" /* @@ -139,6 +139,9 @@ h5tools_close(void) rawdatastream = NULL; } + /* Clean up the reference path table, if it's been used */ + term_ref_path_table(); + /* Shut down the library */ H5close(); |