From 9cbb114104fe60b71d781f232e3b2b167da83ca7 Mon Sep 17 00:00:00 2001 From: Pedro Vicente Nunes Date: Tue, 2 Oct 2007 16:22:10 -0500 Subject: [svn-r14178] code cleaning: removed one unused function tested: linux --- tools/h5dump/h5dumpgentest.c | 62 -------------------------------------------- 1 file changed, 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; - -} - /*------------------------------------------------------------------------- -- cgit v0.12