summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-02 21:22:10 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-02 21:22:10 (GMT)
commit9cbb114104fe60b71d781f232e3b2b167da83ca7 (patch)
treee69bfbcd5e231af544eed774c67291bb8477f7a5 /tools
parentbbe71dc3b6e13ec3d0b95aeeda4f7033ce37eed6 (diff)
downloadhdf5-9cbb114104fe60b71d781f232e3b2b167da83ca7.zip
hdf5-9cbb114104fe60b71d781f232e3b2b167da83ca7.tar.gz
hdf5-9cbb114104fe60b71d781f232e3b2b167da83ca7.tar.bz2
[svn-r14178] code cleaning:
removed one unused function tested: linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/h5dumpgentest.c62
1 files changed, 0 insertions, 62 deletions
diff --git a/tools/h5dump/h5dumpgentest.c b/tools/h5dump/h5dumpgentest.c
index ba16d26..9d45e57 100644
--- a/tools/h5dump/h5dumpgentest.c
+++ b/tools/h5dump/h5dumpgentest.c
@@ -5755,68 +5755,6 @@ gent_hyperslab(void)
-/*-------------------------------------------------------------------------
- * Function: gent_link_creation_order
- *
- * Purpose: generate a file with several groups and set H5Pset_link_creation_order
- *
- *-------------------------------------------------------------------------
- */
-static void
-gent_link_creation_order(char* fname, unsigned crt_order_flags)
-{
- hid_t fid; /* file id */
- hid_t gid; /* group id */
- hid_t fcpl_id; /* file creation property list id */
-
- if ((fcpl_id = H5Pcreate(H5P_FILE_CREATE)) < 0)
- goto out;
-
- if ( crt_order_flags )
- {
-
- if (H5Pset_link_creation_order(fcpl_id, crt_order_flags ) < 0)
- goto out;
-
- }
-
- if ((fid = H5Fcreate(fname, H5F_ACC_TRUNC, fcpl_id, H5P_DEFAULT)) < 0)
- goto out;
-
- /* create some groups */
- if ((gid = H5Gcreate2(fid, "c", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
- goto out;
- if (H5Gclose(gid) < 0)
- goto out;
- if ((gid = H5Gcreate2(fid, "b", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
- goto out;
- if (H5Gclose(gid) < 0)
- goto out;
- if ((gid = H5Gcreate2(fid, "a", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
- goto out;
- if (H5Gclose(gid) < 0)
- goto out;
-
-
- if (H5Pclose(fcpl_id) < 0)
- goto out;
- if (H5Fclose(fid) < 0)
- goto out;
-
- return;
-
-out:
- printf("Error.....\n");
- H5E_BEGIN_TRY {
- H5Gclose(gid);
- H5Pclose(fcpl_id);
- H5Fclose(fid);
-
- } H5E_END_TRY;
- return;
-
-}
-
/*-------------------------------------------------------------------------