diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-01-18 23:30:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-01-18 23:30:23 (GMT) |
commit | 7921315a33816b58c7d055d4744df691c943eaa8 (patch) | |
tree | e654371403bcbf96fdee2458bf288dfc9cc531f9 /tools | |
parent | 0059525322df98fb6c6beaec2b89df93cc9657a8 (diff) | |
download | hdf5-7921315a33816b58c7d055d4744df691c943eaa8.zip hdf5-7921315a33816b58c7d055d4744df691c943eaa8.tar.gz hdf5-7921315a33816b58c7d055d4744df691c943eaa8.tar.bz2 |
[svn-r3304] Purpose:
Code update
Description:
Remove ragged array code & tests from library before release.
Platforms tested:
FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Dependencies | 8 | ||||
-rw-r--r-- | tools/h5ls.c | 30 |
2 files changed, 0 insertions, 38 deletions
diff --git a/tools/Dependencies b/tools/Dependencies index 37ea623..e570192 100644 --- a/tools/Dependencies +++ b/tools/Dependencies @@ -24,7 +24,6 @@ h5tools.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -101,7 +100,6 @@ h5import.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -140,7 +138,6 @@ h5ls.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -176,7 +173,6 @@ h5repart.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -213,7 +209,6 @@ h5dump.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -253,7 +248,6 @@ h5toh4.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -290,7 +284,6 @@ h5dumptst.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ @@ -328,7 +321,6 @@ pdb2hdf.lo: \ $(top_srcdir)/src/H5Ppublic.h \ $(top_srcdir)/src/H5Zpublic.h \ $(top_srcdir)/src/H5Rpublic.h \ - $(top_srcdir)/src/H5RApublic.h \ $(top_srcdir)/src/H5Spublic.h \ $(top_srcdir)/src/H5Tpublic.h \ $(top_srcdir)/src/H5FDcore.h \ diff --git a/tools/h5ls.c b/tools/h5ls.c index 2ceecb0..7a6ff39 100644 --- a/tools/h5ls.c +++ b/tools/h5ls.c @@ -1602,34 +1602,6 @@ datatype_list2(hid_t type, const char UNUSED *name) /*------------------------------------------------------------------------- - * Function: ragged_list2 - * - * Purpose: List information about a ragged array which should appear - * after information which is general to all objects. - * - * Return: Success: 0 - * - * Failure: -1 - * - * Programmer: Robb Matzke - * Thursday, November 5, 1998 - * - * Modifications: - * - *------------------------------------------------------------------------- - */ -static herr_t -ragged_list2(hid_t UNUSED ra, const char UNUSED *name) -{ - if (data_g) { - puts(" Data: Not implemented yet (see values of member"); - puts(" datasets `raw', `over', and `meta')"); - } - return -1; -} - - -/*------------------------------------------------------------------------- * Function: link_open * * Purpose: This gets called to open a symbolic link. Since symbolic @@ -1965,8 +1937,6 @@ main (int argc, char *argv[]) NULL, datatype_list2); DISPATCH(H5G_LINK, "-> ", link_open, NULL, NULL, NULL); - DISPATCH(H5G_RAGGED, "Ragged Array", H5Gopen, H5Gclose, - NULL, ragged_list2); #if 0 /* Name of this program without the path */ |